html, body {
    height: 100%;
}

body{
        font-family: Ubuntu;
    }
    .bg{
        opacity: 0.45;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        overflow: hidden;
        height: 100%;
        object-fit: cover;
    }

    .font-bold {
        color: #000000;
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 24px;
    }

    .header {
        height: 56px;
        width: 100%;
        border-radius: 0px;
        position: fixed;
        z-index: 10;
        left: 0%;
        right: 0%;
        top: 0%;
        bottom: 0%;

        background: #FFFFFF;
        box-shadow: 0px 0px 0px 1px rgba(198, 198, 198, 0.25), 0px 1px 3px rgba(163, 173, 177, 0.25);

    }

    .header-body {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 35px;
        padding: 15px 0px;

    }

    .content-body {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .school {
        color: #1D1E4D;
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FFFFFF;
        box-shadow: 0px 2px 4px rgba(29, 30, 77, 0.1);
        border-radius: 8px;
    }

    .login {
        display: flex;
        justify-content: start;
        flex-direction: column;
        background: #FFFFFF;
        margin-top: 0px;
        
        border-radius: 8px;
        box-shadow: 0px 2px 4px rgba(29, 30, 77, 0.1);

    }

    .label-gray {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        color: rgba(0, 0, 0, 0.7);
    }

    .label-black {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        color: #000000;
    }

    .text-box {
        background: #E7E7E7;
        mix-blend-mode: normal;
        opacity: 0.8;
        border-radius: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
        color:black;
        font-size:15px;
    }

     ::-webkit-input-placeholder { 
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        color: rgba(0, 0, 0,0.7) !important;
    }

    :-ms-input-placeholder {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        color: rgba(0, 0, 0,0.7) !important;
    }

    ::placeholder {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        color: rgba(0, 0, 0,0.7) !important;
    }

    .link {
        color: #013EDB;
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
    }

    .link:hover {
        color: #013EDB;
    }

    .login_button {
        background: #3949AB;
        border-radius: 4px;
        padding: 15px 16px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: white;
    }

    @media only screen and (max-width: 426px) {
        .login {
            padding: 20px !important;
        }
    }