/* CloudNexus auth pages */
.auth-page {
    font-family: Inter, system-ui, sans-serif;
    min-height: 100dvh;
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, hsla(28, 100%, 74%, 0.14) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(28, 100%, 74%, 0.1) 0, transparent 45%);
}

.auth-display {
    font-family: Outfit, system-ui, sans-serif;
}

.auth-input {
    display: block;
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-input::placeholder {
    color: #94a3b8;
}

.auth-input:hover {
    border-color: #cbd5e1;
}

.auth-input:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

/* Form field spacing */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.auth-form-submit {
    margin-top: 0.75rem;
}

.auth-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff8c00 0%, #f97316 100%);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.35);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.auth-btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    transform: translateY(-1px);
}

.auth-btn-primary:active {
    transform: translateY(0);
}

.auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.625rem;
    transition: background 0.15s, color 0.15s;
}

.auth-tab--active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.auth-tab--inactive {
    color: #64748b;
}

.auth-tab--inactive:hover {
    color: #334155;
}
