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

html,
body{
    width:100%;
    overflow-x:hidden;
    background:#f5f5f5;
    font-family:Arial, Helvetica, sans-serif;
}

.login-page{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.login-box{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    margin:0 auto;
}

.login-logo{
    text-align:center;
    margin-bottom:35px;
}

.login-logo img{
    width:200px;
    max-width:100%;
}

.login-box h1{
    text-align:center;
    margin-bottom:15px;
}

.login-box p{
    text-align:center;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-control{
    width:100%;
    height:60px;
    padding:15px 18px;
    border:2px solid #E5E5E5;
    border-radius:12px;
    background:#FFF9C4;
    font-size:18px;
}

.form-control:focus{
    outline:none;
    border-color:#0B5D3B;
    box-shadow:0 0 8px rgba(11,93,59,.25);
}

.form-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0;
    flex-wrap:wrap;
    gap:10px;
}

.form-options a,
.register-link a,
.back-home a{
    color:#0B5D3B;
    text-decoration:none;
    font-weight:700;
}

.btn-login{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#0B5D3B;
    color:#fff;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
}

.register-link,
.back-home{
    text-align:center;
    margin-top:20px;
}

.footer{
    width:100%;
    background:#0B5D3B;
    color:#fff;
    text-align:center;
    padding:25px 20px;
    margin-top:40px;
}

.footer p{
    margin:0;
}

@media (max-width:768px){

    .login-page{
        padding:20px;
    }

    .login-box{
        padding:30px 20px;
    }

    .form-options{
        flex-direction:column;
        align-items:flex-start;
    }
}
.alert-success {
    background: #e8f7f0;
    color: #0b5d46;
    border: 1px solid #b7dfcf;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}