body{
    margin:0;
    padding:  0;
    font-family: Georgia;
    background:#f4f6f9;
}

.auth-container{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.auth-card{
    background: #fff;
    width:400px;
    border-radius:10px;
    border: 3px solid #000;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.auth-card h2{
    text-align:center;
    margin-bottom:25px;
}

.auth-card input{
    width:100%;
    margin-top:10px;
    margin-bottom:15px;
    border:1px solid #000 !important;
    border-radius:6px;
    font-size:14px;
}

.auth-card button{
    width:100%;
    background:#FFD700;
    color:black;
    border:none;
    border-radius:6px;
    font-size:15px;
    cursor:pointer;
}

.auth-card button:hover{
    background:#FFD780;
}

.message{
    text-align:center;
    margin-bottom:15px;
    color:green;
}

.error{
    text-align:center;
    margin-bottom:15px;
    color:red;
}

.link-back{
    text-align:center;
    margin-top:15px;
}

.link-back a{
    color:#e6e6e6;
    text-decoration:none;
}