.login-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.login-card{
    width:100%;
    max-width:450px;
    background:#1f2937;
    padding:40px;
    border-radius:15px;
    text-align:center;
}

.login-card h1{
    margin-bottom:10px;
}

.login-card p{
    margin-bottom:20px;
}

.login-card input[type="email"],
.login-card input[type="password"]{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
}

.role-selector{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.options{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    font-size:14px;
}

.options a{
    color:#22c55e;
    text-decoration:none;
}

.register-link{
    margin-top:20px;
}

.register-link a{
    color:#22c55e;
}