body{
    background:#f4f6f9;
    font-family:Arial, sans-serif;
}

.auth-container{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-box{
    background:#fff;
    width:380px;
    padding:40px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.auth-title{
    text-align:center;
    font-size:22px;
    font-weight:bold;
    color:#0b2545;
    margin-bottom:25px;
}

.auth-box input{
    width:100%;
    padding:12px;
    margin-bottom:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.auth-box input:focus{
    outline:none;
    border-color:#f77f00;
}

.auth-box button{
    width:100%;
    background:#f77f00;
    color:#fff;
    padding:12px;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:.2s;
}

.auth-box button:hover{
    background:#e66f00;
}

.auth-msg{
    margin-top:15px;
    text-align:center;
    color:green;
}

.auth-footer{
    text-align:center;
    margin-top:18px;
    font-size:14px;
}

.auth-footer a{
    color:#0b2545;
    text-decoration:none;
    font-weight:bold;
}
