/* Auth Pages Styles */

/* Page Header */
.auth-page-header {
    padding: 80px 0;
    background-color: #0c2139;
    position: relative;
}

.auth-page-header-custom-bg {
    background-color: #0c2139;
}

.auth-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 33, 57, 0.75);
    pointer-events: none;
}

.auth-page-header h2 {
    color: white;
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.auth-page-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* Section Background */
.auth-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Left Section */
.auth-left-section {
    padding-right: 40px;
}

.auth-left-content {
    padding: 40px 0;
}

.auth-left-title {
    color: #0c2139;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.auth-left-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.auth-benefits-title {
    color: #0c2139;
    margin-bottom: 20px;
    font-size: 20px;
}

.auth-benefits-list {
    list-style: none;
    padding: 0;
}

.auth-benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.auth-benefits-list li i {
    margin-right: 12px;
    font-size: 18px;
    margin-top: 3px;
}

.auth-benefits-list li i.fa-check-circle {
    color: #51A351;
}

.auth-benefits-list li i.fa-shield-alt {
    color: #0c2139;
}

.auth-benefits-list li span {
    color: #666;
}

/* Right Section - Form Card */
.auth-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.auth-form-title {
    margin-bottom: 30px;
    color: #0c2139;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.auth-form-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Form Elements */
.auth-label {
    color: #0c2139;
    font-weight: 500;
    margin-bottom: 8px;
}

.auth-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.auth-input:focus {
    border-color: #0c2139;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(12, 33, 57, 0.25);
}

/* Select/Dropdown Styles */
select.auth-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    cursor: pointer;
}

select.auth-input:focus {
    border-color: #0c2139;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(12, 33, 57, 0.25);
}

/* Required Field Indicator */
.auth-label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* Password Input with Toggle */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .auth-input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.password-toggle:hover {
    color: #0c2139;
}

/* Buttons */
.auth-btn-primary {
    background-color: #0c2139;
    border: none;
    padding: 12px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.auth-btn-primary:hover {
    background-color: #0a1a2e;
    color: white;
}

.auth-btn-primary:focus {
    background-color: #0a1a2e;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(12, 33, 57, 0.25);
}

/* Links */
.auth-link {
    color: #0c2139;
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    color: #0a1a2e;
    text-decoration: underline;
}

.auth-link-primary {
    color: #0c2139;
    text-decoration: none;
    font-weight: 600;
}

.auth-link-primary:hover {
    color: #0a1a2e;
    text-decoration: underline;
}

/* Text */
.auth-text {
    color: #666;
    margin: 0;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-heading {
    color: #155724;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.alert-heading i {
    margin-right: 8px;
}

.alert-link {
    color: #0c2139;
    font-weight: 600;
    text-decoration: underline;
}

.alert-link:hover {
    color: #0a1a2e;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-danger ul {
    list-style-type: disc;
}

.alert-danger li {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .auth-left-section {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .auth-left-content {
        padding: 20px 0;
    }
}
