body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f4f7fb;
}

.guest-layout{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
    background:linear-gradient(135deg,#0f172a,#1e293b,#ef4444);
}

.login-page{
    width:100%;
    display:flex;
    justify-content:center;
    padding:40px;
}

.login-card{

    width:430px;

    background:#fff;

    border-radius:18px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.login-header{

    text-align:center;

    margin-bottom:35px;

}

.login-logo{

    width:90px;

    margin-bottom:20px;

}

.login-header h1{

    margin:0;

    font-size:32px;

    color:#111827;

}

.login-header p{

    color:#6b7280;

    margin-top:10px;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.form-group input{

    width:100%;

    padding:14px;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-size:15px;

    box-sizing:border-box;

}

.form-group input:focus{

    outline:none;

    border-color:#ef4444;

}

.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    font-size:14px;

}

.login-options a{

    text-decoration:none;

    color:#ef4444;

}

.btn-login{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#ef4444;

    color:#fff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.btn-login:hover{

    background:#dc2626;

}