/* ==========================================================================
   Authentication Screens Stylesheet - CSS
   ========================================================================== */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background-color: var(--bg-body);
}

.auth-container {
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--box-shadow-card);
    position: relative;
    overflow: hidden;
    animation: fadeIn var(--transition-normal) forwards;
}

/* Accent top border glow */
.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.auth-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.auth-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--color-text-title);
}

.auth-logo i {
    color: var(--color-primary);
}

.auth-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.auth-footer {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Captcha wrapper */
.captcha-container {
    background-color: var(--bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.captcha-image {
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 1.15rem;
    color: var(--color-primary);
    background: linear-gradient(45deg, var(--color-border), transparent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    user-select: none;
}

/* OTP Code input boxes group */
.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.otp-field {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    background-color: var(--bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-title);
}

.otp-field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
