/* ===== auth.css ===== */
/* Auth Page Specific Styles - No Conflicts with Main CSS */


.auth-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-red) 100%);
}

.auth-container {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    justify-content: center;
    align-items: center;

}

.auth-image {
    background: linear-gradient(rgba(151, 16, 20, 0.8), rgba(26, 26, 26, 0.6)), url('../images/signup-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.auth-image h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.auth-image p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.auth-form {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 40px;
    background: rgba(151, 16, 20, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.auth-tab.active {
    background: var(--accent-gold);
    color: var(--dark-bg);
    font-weight: 600;
}

.tab-content {
    display: none;
    animation: authFadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-form-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent-gold);
}

.auth-form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.auth-form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(247, 193, 115, 0.1);
}

.auth-form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f7c173' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 45px;
    cursor: pointer;
}

.auth-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.auth-checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-gold);
}

.auth-checkbox-container label {
    font-size: 14px;
    opacity: 0.9;
    cursor: pointer;
}

.auth-checkbox-container a {
    color: var(--accent-gold);
    text-decoration: none;
}

.auth-checkbox-container a:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-gold);
    color: var(--dark-bg);
    border: none;
    border-radius:25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.auth-btn:hover {
    background: var(--primary-red);
    font-weight: 600;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 193, 115, 0.4);
}

.auth-forgot-password {
    text-align: center;
    margin-top: 20px;
}

.auth-forgot-password a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 14px;
}

.auth-forgot-password a:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    background: var(--card-bg);
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.auth-social-login {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.auth-btn-social:hover {
    border-color: var(--accent-gold);
    background: rgba(247, 193, 115, 0.1);
}

.auth-password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.auth-strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.auth-strength-fill {
    height: 100%;
    transition: all 0.3s ease;
}

.auth-strength-fill.strength-weak { background: #ff4757; width: 25%; }
.auth-strength-fill.strength-fair { background: #ffa502; width: 50%; }
.auth-strength-fill.strength-good { background: #2ed573; width: 75%; }
.auth-strength-fill.strength-strong { background: #1dd1a1; width: 100%; }

.auth-show-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-size: 20px;
}

.auth-input-with-icon {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-main {
        padding: 100px 10px 20px;
    }
    
    .auth-image {
        padding: 30px;
        min-height: 250px;
    }

    .auth-image h2 {
        font-size: 2rem;
    }

    .auth-form {
        padding: 30px;
    }

    .auth-social-login {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .auth-main {
        padding: 90px 10px 20px;
    }

    .auth-form {
        padding: 20px;
    }

    .auth-image h2 {
        font-size: 1.8rem;
    }
}




/* Restaurant Signup Specific Styles */
.restaurant-signup-hero {
    padding-top: 130px;
    padding-bottom: 80px;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(151, 16, 20, 0.6)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.restaurant-signup-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.restaurant-signup-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.signup-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, var(--dark-bg) 100%);
}

.signup-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.signup-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-bg));
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.signup-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.signup-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.signup-form {
    padding: 50px;
}

.form-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .material-icons {
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 193, 115, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(247, 193, 115, 0.25);
    color: var(--white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(247, 193, 115, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--white);
    font-size: 1rem;
}

.form-select option {
    background: var(--card-bg);
    color: var(--white);
}

.textarea-large {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(247, 193, 115, 0.2);
}

.form-check-input {
    margin-top: 5px;
    accent-color: var(--accent-gold);
}

.form-check-label {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--accent-gold);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--accent-gold);
    color: var(--dark-bg);
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
    background: var(--primary-red);
    font-weight: 600;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 193, 115, 0.4) !important;
}

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, var(--dark-bg) 100%);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(247, 193, 115, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(247, 193, 115, 0.2);
}

.benefit-icon i {
    font-size: 3rem !important;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.row-equal-height {
    display: flex;
    flex-wrap: wrap;
}

.row-equal-height > div {
    display: flex;
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-signup-hero {
        padding: 100px 0 60px;
    }

    .restaurant-signup-hero h1 {
        font-size: 2.2rem;
    }

    .signup-form {
        padding: 30px 20px;
    }

    .signup-header {
        padding: 30px 20px;
    }

    .signup-header h2 {
        font-size: 2rem;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Success Message Styles */
.success-message {
    display: none;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(247, 193, 115, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.file-upload-label:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.file-upload-label .material-icons {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--accent-gold);
}
