/* auth.css */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--theme-clr-1);
    color: var(--font-clr-1);
    font-family: 'Arial', sans-serif;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.auth-logo {
    width: 200px;
    margin-left: 3rem;
    margin-bottom: 1rem;
}

.auth-box form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.auth-box input[type="text"],
.auth-box input[type="email"],
.auth-box input[type="password"] {
    width: 100%;
    padding: 14px 20px;
    font-size: var(--font-size-md);
    color: white;
    border-radius: var(--border-radius-1);
    background-color: transparent;
    border: 1px solid var(--border-clr-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    -webkit-background-clip: padding-box, border-box;
    box-shadow: none;
    outline: none;
}

.auth-box input::placeholder {
    color: var(--font-clr-2);
}

.auth-box input:focus {
    border: 1px solid var(--border-focus-clr);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, border 0.2s ease;
}

.auth-terms {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: var(--font-size-sm);
    color: var(--theme-clr-2);
}

.auth-terms input[type="checkbox"] {
    accent-color: var(--theme-clr-2);
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.auth-terms label {
    color: var(--font-clr-4);
}

.auth-submit-button {
    width: 100%;
    padding: 14px 0px;
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: var(--font-clr-4);
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 70%);
    border: 1px solid var(--theme-clr-2);
    border-radius: var(--border-radius-1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit-button:hover {
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

/* ADD LATER */
/* .face-login {
    margin-top: 20px;
    background: #222;
    border-radius: 10px;
    color: white;
    padding: 10px 16px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
} */

/* .face-login i.icon-camera::before {
    content: "📷";
} */

.change-auth-link a {
    color: var(--font-clr-4);
}

/* INPUT AUTOFILL FIX STYLES */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: var(--font-clr-1) !important;
    border: 1px solid var(--border-clr-1) !important;
    transition: background-color 9999s ease-out 0s;
}


@media (max-width: 768px) {

    .auth-box input[type="text"],
    .auth-box input[type="email"],
    .auth-box input[type="password"] {
        font-size: 16px !important;
    }
}
