/* Auth Pages Custom Styles */

/* Welcome Header */
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.auth-title-accent {
    color: #2C85FF;
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin-top: 8px;
}

/* Primary Button */
.auth-btn-primary {
    width: 100%;
    background-color: #2C85FF;
    color: #ffffff;
    height: 48px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-btn-primary:hover {
    background-color: #0052CC;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.auth-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 133, 255, 0.3);
}

/* Links */
.auth-link {
    color: #2C85FF;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.auth-link:hover {
    color: #0052CC;
}

/* Info Box */
.auth-info-box {
    margin-bottom: 24px;
    padding: 12px;
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
}

.auth-info-text {
    font-size: 14px;
    color: #4B5563;
}

.auth-info-text strong {
    color: #111827;
}

/* Input Labels */
.auth-label {
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

/* Input Fields */
.auth-input {
    display: block;
    margin-top: 4px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.auth-input:focus {
    border-color: #2C85FF;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 1px #2C85FF;
}

.auth-input::placeholder {
    color: #9CA3AF;
}

/* OTP Input */
.auth-otp-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.2em;
}

/* Captcha Container */
.auth-captcha-container {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-captcha-image {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #ffffff;
    height: 48px;
}

.auth-captcha-refresh {
    color: #2C85FF;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.auth-captcha-refresh:hover {
    color: #0052CC;
}

/* Text Center */
.auth-text-center {
    text-align: center;
    margin-top: 16px;
}

/* Resend Button */
.auth-resend-btn {
    font-size: 14px;
    color: #2C85FF;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.auth-resend-btn:hover:not(:disabled) {
    color: #0052CC;
}

.auth-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Flex Between */
.auth-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

/* Spacing */
.auth-mt-4 {
    margin-top: 16px;
}

.auth-mt-6 {
    margin-top: 24px;
}
