/* ================= AUTH PAGE ================= */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* BOX */
.auth-box {
    width: 360px;
    background: #020617;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* TITLE */
.auth-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #22c55e;
}

/* INPUT */
.auth-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #fff;
}

/* BUTTON */
.auth-box button {
    width: 100%;
    padding: 10px;
    background: #22c55e;
    border: none;
    border-radius: 6px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}

.auth-box button:hover {
    opacity: 0.85;
}

/* LINK */
.auth-box p {
    text-align: center;
    margin-top: 10px;
}

.auth-box a {
    color: #22c55e;
    text-decoration: none;
}