*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(
        to bottom,
        #6FA8DC 0%,
        #4682B4 50%,
        #2F5D8A 100%
    );
}

.home-link{
    position:absolute;
    top:25px;
    left:25px;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:white;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.home-link:hover{
    background:rgba(255,255,255,.25);
    transform:translateX(-3px);
}

.login-card{
    width:340px;
    padding:40px;
    border-radius:15px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.login-card h2{
    text-align:center;
    color:white;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    color:#ddd;
    margin-bottom:5px;
    font-size:13px;
}

.form-group input{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:2px solid white;
    padding:10px 0;
    color:white;
    outline:none;
}

.btn-login{
    width:100%;
    height:45px;
    border:none;
    border-radius:15px;
    background:#040029;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.register-link{
    text-align:center;
    margin-top:15px;
    color:#ddd;
    font-size:13px;
}

.register-link a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}
.form-group select{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:2px solid white;
    padding:10px 0;
    color:white;
    outline:none;
}

.form-group select option{

    color:black;
}