body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#0a0c10;
    color:#eef1f5;

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;
}

.auth-container{

    width:400px;
    max-width:90%;

    background:#151a22;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    padding:40px;
}

h1{
    text-align:center;
    color:#e8bf5a;
}

p{
    text-align:center;
    color:#8b95a5;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;

    margin-top:30px;
}

input{

    padding:14px;

    border:none;

    border-radius:8px;

    background:#10141b;

    color:white;
}

button{

    padding:14px;

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-weight:bold;
}

button[type="submit"]{

    background:#e8bf5a;

    color:black;
}

#googleLogin{

    width:100%;

    margin-top:20px;

    background:white;

    color:black;
}

a{

    color:#e8bf5a;

    text-decoration:none;
}

hr{

    margin:30px 0;

    border:none;

    border-top:1px solid rgba(255,255,255,.08);
}