/* Auth Pages Styles */
.auth-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero.jpeg') no-repeat center center/cover;
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.auth-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.auth-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.auth-section {
    padding: 80px 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 10px;
    font-family: var(--cultural-font);
}

.auth-header p {
    color: #666;
    font-size: 1.1rem;
}

.auth-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(206, 17, 38, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.password-strength {
    margin-top: 10px;
}

.strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 5px;
    overflow: hidden;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: #666;
}

.password-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.forgot-password {
    color: var(--red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: #555;
}

.checkbox-group a {
    color: var(--red);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-loading {
    display: none;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.auth-divider span {
    background: var(--white);
    padding: 0 15px;
    color: #666;
    position: relative;
    z-index: 1;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    background: var(--white);
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-google:hover {
    border-color: #db4437;
    color: #db4437;
}

.btn-facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.auth-footer p {
    color: #666;
    margin: 0;
}

.auth-footer a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-side {
    position: sticky;
    top: 100px;
}

.auth-benefits {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-benefits h3 {
    color: var(--green);
    margin-bottom: 25px;
    font-family: var(--cultural-font);
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: #f8f9fa;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 15px;
}

.trust-item h4 {
    color: var(--green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trust-item p {
    color: #666;
    margin: 0;
}

.security-notice {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
    color: var(--white);
}

.security-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.security-content i {
    font-size: 3rem;
    flex-shrink: 0;
}

.security-text h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.security-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .auth-side {
        position: static;
    }
    
    .auth-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .auth-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .auth-hero {
        padding: 80px 0 40px;
        margin-top: 70px;
    }
    
    .auth-hero-content h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .auth-card {
        padding: 30px 25px;
    }
    
    .auth-header h2 {
        font-size: 1.8rem;
    }
    
    .security-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 25px 20px;
    }
    
    .auth-header h2 {
        font-size: 1.6rem;
    }
    
    .social-auth {
        flex-direction: column;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}