/* Dark Theme Styles for Auth Pages */

/* Global dark theme overrides */
body {
    background: #111510 !important;
    color: #ffffff !important;
}

.text-white {
    color: #ffffff !important;
}

/* Override the main form area background */
.from-field-area {
    background: #111510 !important;
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Dark form container */
.from-field-area .form-right {
    background: #1a1a1a !important;
    padding: 50px 70px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

/* Dark form title */
.from-field-area .form-right .form-areas .form-top h2 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Dark form subtitle */
.from-field-area .form-right .form-areas .form-top span {
    color: #b0b0b0 !important;
}

/* Dark form inputs */
.from-field-area .form-right .form-areas form .form-group input,
.form-control {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
    font-style: normal !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.from-field-area .form-right .form-areas form .form-group input::placeholder,
.form-control::placeholder {
    color: #888 !important;
}

.from-field-area .form-right .form-areas form .form-group input:focus,
.form-control:focus {
    border-color: #6258fb !important;
    background: #333 !important;
    box-shadow: 0 0 0 2px rgba(98, 88, 251, 0.2) !important;
    outline: none;
}

/* Dark form labels */
.height-section label,
label {
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Dark button styling */
.from-field-area .form-right .form-areas form .form-group .btn-primary,
.btn-primary {
    background: linear-gradient(135deg, #6258fb 0%, #7c73ff 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(98, 88, 251, 0.3) !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.from-field-area .form-right .form-areas form .form-group .btn-primary:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #7c73ff 0%, #6258fb 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(98, 88, 251, 0.4) !important;
}

/* Dark password toggle icons */
.password-show,
.eye.password-show {
    color: #6258fb !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.password-show:hover,
.eye.password-show:hover {
    color: #7c73ff !important;
}

/* Dark alert styling */
.from-field-area .form-right .form-areas form .alert,
.alert {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
    border-radius: 8px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.from-field-area .form-right .form-areas form .alert.alert-danger,
.alert.alert-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: #dc3545 !important;
    color: #ff6b6b !important;
}

.from-field-area .form-right .form-areas form .alert.alert-success,
.alert.alert-success {
    background: rgba(40, 167, 69, 0.1) !important;
    border-color: #28a745 !important;
    color: #6bcf7f !important;
}

.from-field-area .form-right .form-areas form .alert button.close,
.alert button.close {
    color: #ffffff !important;
    opacity: 0.7;
}

.from-field-area .form-right .form-areas form .alert button.close:hover,
.alert button.close:hover {
    opacity: 1;
}

/* Dark error messages */
.invalid-feedback {
    color: #ff6b6b !important;
    font-size: 13px;
    margin-top: 5px;
}

/* Dark link styling */
.from-field-area .form-right .form-areas form .dont-account,
.dont-account {
    color: #b0b0b0 !important;
    text-align: center;
    margin-top: 32px;
    font-size: 1.05rem;
}

.from-field-area .form-right .form-areas form .dont-account a,
.dont-account a {
    color: #6258fb !important;
    text-decoration: none;
    margin-left: 4px;
}

.from-field-area .form-right .form-areas form .dont-account a:hover,
.dont-account a:hover {
    color: #7c73ff !important;
    text-decoration: underline;
}

/* Forgot password link */
.from-field-area .form-right .form-areas form .forgot-password,
.forgot-password {
    color: #b0b0b0 !important;
    font-size: 0.98rem;
    display: block;
    margin-bottom: 32px;
    text-align: left;
    text-decoration: none;
}

.from-field-area .form-right .form-areas form .forgot-password:hover,
.forgot-password:hover {
    color: #6258fb !important;
    text-decoration: underline;
}

/* Dark form group spacing */
.from-field-area .form-right .form-areas form .form-group,
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .from-field-area .form-right {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .from-field-area .form-right .form-areas .form-top h2 {
        font-size: 22px;
    }
    
    .centered-login-wrapper {
        padding: 20px;
    }
}

/* Dark theme for verification inputs */
.from-field-area .form-right .form-areas.code-catification form .form-group input.veryfay {
    background: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #ffffff !important;
}

/* Enhanced focus states */
.from-field-area .form-right .form-areas form .form-group input:focus,
.from-field-area .form-right .form-areas form .form-group textarea:focus,
.from-field-area .form-right .form-areas form .form-group select:focus,
.form-control:focus {
    outline: none !important;
    border-color: #6258fb !important;
    box-shadow: 0 0 0 3px rgba(98, 88, 251, 0.1) !important;
}

/* Smooth transitions */
.from-field-area .form-right .form-areas form .form-group input,
.from-field-area .form-right .form-areas form .form-group .btn-primary,
.from-field-area .form-right .form-areas form .dont-account a,
.form-control,
.btn-primary,
.dont-account a {
    transition: all 0.3s ease !important;
}

/* Login page specific styles */
.centered-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111510;
}

.col-lg-6.acurate {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-areas {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    padding: 0;
}

/* Position relative for password fields */
.position-relative {
    position: relative;
} 