/* ================= AUTH PAGE ================= */

.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at top, rgba(255,136,0,.18), transparent 34%),
        #ffffff;
}

/* BOX */
.auth-box {
    width: 100%;
    max-width: 360px;
    background: #111111;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,136,0,.35);
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

/* LOGO */
.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.auth-logo img {
    
    max-height: 80px;
    object-fit: contain;
}

/* TITLE */
.auth-box h2 {
    text-align: center;
    margin-bottom: 22px;
    color: #ff8800;
    font-size: 24px;
    font-weight: 800;
}

/* INPUT */
.auth-box input {
    width: 100%;
    padding: 12px 13px;
    margin-bottom: 13px;
    border-radius: 10px;
    border: 1px solid #2b2b2b;
    background: #ffffff;
    color: #222222;
    outline: none;
}

.auth-box input:focus {
    border-color: #ff8800;
    box-shadow: 0 0 0 3px rgba(255,136,0,.18);
}

/* BUTTON */
.auth-box button {
    width: 100%;
    padding: 12px;
    background: #ff8800;
    border: none;
    border-radius: 10px;
    color: #111111;
    cursor: pointer;
    font-weight: 800;
}

.auth-box button:hover {
    background: #e67600;
}

/* LINK */
.auth-box p {
    text-align: center;
    margin-top: 14px;
    color: rgba(255,255,255,.78);
}

.auth-box a {
    color: #ff8800;
    font-weight: 700;
    text-decoration: none;
}

.auth-box a:hover {
    text-decoration: underline;
}