*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:"Plus Jakarta Sans",sans-serif;

    background:

    linear-gradient(
        rgba(245,247,250,.94),
        rgba(245,247,250,.94)
    ),

    url("../images/student-login.jpg");

    background-size:cover;

    background-position:center;

}

.portal-login{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.login-box{

    width:100%;
    max-width:520px;

    background:#fff;

    padding:70px 70px 60px;

    text-align:center;

    border-radius:6px;

    box-shadow:
        0 8px 30px rgba(0,0,0,.06);

}

/*=========================*/

.login-logo{

    width:240px;

    margin-bottom:30px;

}

/*=========================*/

.login-box h1{

    font-size:56px;

    font-weight:300;

    color:#294f67;

    margin-bottom:18px;

}

.login-box p{

    color:#777;

    font-size:18px;

    margin-bottom:45px;

}

/*=========================*/

.login-box input{

    width:100%;

    height:62px;

    border:1px solid #e2e2e2;

    margin-bottom:22px;

    padding:0 22px;

    font-size:16px;

    border-radius:6px;

}

/*=========================*/

.login-box input:focus{

    outline:none;

    border-color:#294f67;

}

/*=========================*/

.login-box button{

    width:100%;

    height:62px;

    border:none;

    background:#294f67;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    border-radius:6px;

    transition:.25s;

}

.login-box button:hover{

    background:#203f52;

}

/*=========================*/

.login-box a{

    display:inline-block;

    margin-top:32px;

    color:#294f67;

    text-decoration:none;

    font-size:16px;

}

.portal-links{

    margin-top:35px;

    display:flex;

    flex-direction:column;

    gap:18px;

    text-align:center;
}

.register-link{

    color:#2d5672;

    font-weight:600;

    text-decoration:none;
}

.register-link:hover{

    text-decoration:underline;
}

.login-links{
    margin-top:25px;
}

/* ADD THIS BELOW */

.register-link{
    margin-top:25px;
    text-align:center;
    font-size:15px;
}

.register-link a{
    color:#2c5672;
    font-weight:600;
    text-decoration:none;
}

.register-link a:hover{
    text-decoration:underline;
}

.login-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
    linear-gradient(rgba(245,247,250,.85),
    rgba(245,247,250,.85)),
    url("../images/student-login.jpg");
    background-size:cover;
    background-position:center;
}

.login-card{
    width:520px;
    background:#fff;
    padding:60px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.login-logo{
    width:70px;
    margin-bottom:25px;
}