/* ==========================
   AUTH PAGE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#f5f5f5;

}

/* Container */

.auth-container{

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;

    padding:40px;

}

/* Form */

.auth-form{

    width:420px;

    background:#fff;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/* Title */

.auth-form h2{

    text-align:center;

    margin-bottom:30px;

    font-size:30px;

    color:#222;

}

/* Inputs */

.auth-form input{

    width:100%;

    padding:14px;

    margin-bottom:18px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.auth-form input:focus{

    border-color:#b88a44;

}

/* Button */

.auth-form button{

    width:100%;

    padding:14px;

    border:none;

    background:#111;

    color:#fff;

    border-radius:8px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.auth-form button:hover{

    background:#b88a44;

}

/* Bottom Text */

.auth-form p{

    text-align:center;

    margin-top:20px;

    color:#666;

}

.auth-form a{

    color:#b88a44;

    text-decoration:none;

    font-weight:bold;

}

.auth-form a:hover{

    text-decoration:underline;

}