/* ========================================
   STUDYMEX COMMON STYLES
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #006847;
    --primary-red: #CE1126;
    --dark-green: #005e40;
    --dark-red: #b90f22;
    --text-dark: #333;
    --text-gray: #666;
    --bg-light: #f5f5f5;
    --border-gray: #dee2e6;
    --success-green: #28a745;
    --error-red: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* ========================================
   NAVIGATION
   ======================================== */

.main-nav {
    background: var(--primary-green);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-container {
    background: white;
    padding: 3px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 45px;
    width: auto;
    display: block;
}

.nav-brand-text {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.btn-nav-signup {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
}

.btn-nav-signup:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-nav-login {
    /* Sign In looks like regular nav links */
}

/* Account Menu */
#nav-account {
    display: none;
    position: relative;
}

.nav-account-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-account-toggle:hover {
    background: rgba(255, 255, 255, 0.4);
}

.nav-account-toggle svg {
    width: 20px;
    height: 20px;
}

.nav-account-arrow {
    font-size: 0.8em;
}

.nav-account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    display: none;
    z-index: 1000;
}

.nav-account-dropdown.active {
    display: block;
}

.nav-account-dropdown a,
.nav-account-dropdown button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.95em;
    transition: background 0.2s ease;
}

.nav-account-dropdown a:hover,
.nav-account-dropdown button:hover {
    background: #f5f5f5;
}

.nav-user-email {
    padding: 10px 16px;
    font-size: 0.9em;
    color: var(--text-gray);
    border-bottom: 1px solid #eee;
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: var(--primary-green);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 25px;
        border-radius: 0;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .btn-nav-signup,
    .btn-nav-login {
        border: none;
        background: transparent;
    }

    .btn-nav-signup {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
    }

    #nav-account {
        width: 100%;
    }

    .nav-account-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 25px;
        border-radius: 0;
        border: none;
    }

    .nav-account-dropdown {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
    }

    .nav-account-dropdown a,
    .nav-account-dropdown button {
        color: white;
        padding-left: 45px;
    }

    .nav-account-dropdown a:hover,
    .nav-account-dropdown button:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .nav-user-email {
        color: rgba(255, 255, 255, 0.8);
        border-bottom-color: rgba(255, 255, 255, 0.2);
        padding-left: 45px;
    }

    .nav-brand a {
        font-size: 1.2em;
    }
}

/* ========================================
   CONTAINERS & LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
    background: white;
}

.section-light {
    background: #f8f9fa;
}

.section-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, #004d33 100%);
    color: white;
    text-align: center;
}

.section-guarantee {
    background: #e8f5e9;
}

.page-header {
    background: linear-gradient(to right, var(--primary-green) 0%, var(--primary-green) 50%, var(--primary-red) 50%, var(--primary-red) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.section-title {
    font-size: 2em;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.section-intro {
    text-align: center;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-gray);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    --gradient-left: 20%;
    --gradient-right: 80%;
    background:
        url('/images/ripple.jpg'),
        linear-gradient(to right,
            var(--dark-green) 0%,
            var(--dark-green) var(--gradient-left),
            white var(--gradient-left),
            white var(--gradient-right),
            var(--dark-red) var(--gradient-right),
            var(--dark-red) 100%);
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: multiply;
    text-align: center;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2), inset 0 -2px 10px rgba(0,0,0,0.2)
}

.hero .container {
    background: transparent;
    padding: 50px 40px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-guarantee {
    margin-top: 20px;
}

.guarantee-badge {
    background: transparent;
    color: var(--primary-green);
    padding: 10px 20px;
    font-size: 1.1em;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

@media (max-width: 1024px) {
    .hero .container {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
}

.btn-secondary-light {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary-light:hover {
    background-color: var(--primary-green);
    color: white;
}

.btn-success {
    background-color: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.btn-success:hover {
    background-color: #218838;
    color: white;
    border: 2px solid #218838;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1em;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ========================================
   GRIDS & CARDS
   ======================================== */

.content-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card, .content-card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3, .content-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* ========================================
   STEPS / HOW IT WORKS
   ======================================== */

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* ========================================
   GUARANTEE BOX
   ======================================== */

.guarantee-box, .guarantee-detailed {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 3px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 104, 71, 0.1);
}

.guarantee-text {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.guarantee-terms h4, .guarantee-detailed h4 {
    color: var(--primary-green);
    margin-top: 30px;
    margin-bottom: 15px;
}

.guarantee-steps, .guarantee-requirements {
    margin-left: 20px;
    margin-bottom: 20px;
}

.guarantee-steps li, .guarantee-requirements li {
    margin-bottom: 10px;
}

.guarantee-promise {
    background: #e8f5e9;
    padding: 20px;
    border-left: 4px solid var(--primary-green);
    margin: 20px 0;
    font-size: 1.1em;
}

.guarantee-note {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
    font-size: 0.95em;
}

/* ========================================
   CONTENT LISTS
   ======================================== */

.content-list {
    max-width: 900px;
    margin: 0 auto;
}

.content-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.check-icon {
    color: var(--success-green);
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
}

.content-item h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.content-list-simple {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-list-simple li {
    margin-bottom: 10px;
}

/* ========================================
   PRICING
   ======================================== */

.pricing-card-main {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    background: var(--primary-green);
    color: white;
    padding: 40px;
    text-align: center;
}

.pricing-header h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.price-line {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-size: 2em;
    margin-right: 5px;
    margin-top: 10px;
}

.price {
    font-size: 4em;
    font-weight: bold;
    line-height: 1;
}

.period {
    font-size: 1.1em;
    opacity: 0.9;
    display: block;
    margin-top: 10px;
}

.pricing-tagline {
    font-size: 1.1em;
    opacity: 0.95;
}

.pricing-features {
    padding: 40px;
}

.pricing-features h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success-green);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-cta {
    padding: 0 40px 40px;
}

.trust-badges {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badges span {
    font-size: 0.9em;
    color: var(--text-gray);
}

.payment-note {
    text-align: center;
    font-size: 0.9em;
    color: var(--text-gray);
    margin-top: 15px;
}

/* ========================================
   FAQ
   ======================================== */

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 1.8em;
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: 10px;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-green);
}

.faq-item h3, .faq-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.faq-item p {
    margin-bottom: 10px;
}

.faq-more, .faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #e8f5e9;
    border-radius: 8px;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-note, small {
    display: block;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 0.85em;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
}

.contact-method p {
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.9em;
    color: var(--text-gray);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ALERTS & MESSAGES
   ======================================== */

.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    border: 2px solid var(--success-green);
    color: #155724;
}

.alert-error, .error-message {
    background: #f8d7da;
    border: 2px solid var(--error-red);
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
}

.callout-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
}

.disclaimer-text {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid var(--text-gray);
    font-size: 0.95em;
    color: var(--text-gray);
    margin: 20px 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #222;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-disclaimer {
    font-size: 0.85em;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9em;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-guarantee, .cta-subtext {
    font-size: 1em;
    opacity: 0.9;
    margin-top: 15px;
}

.cta-inline {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.feature-list-detailed {
    margin-top: 30px;
}

.feature-detail {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.feature-detail:last-child {
    border-bottom: none;
}

.feature-detail h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.synopsis-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.synopsis-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-gray);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.synopsis-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.synopsis-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: var(--text-gray);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2em;
    }

    .features-grid,
    .content-grid-2 {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }

    .pricing-amount .price {
        font-size: 3em;
    }

    .cta-buttons,
    .cta-inline {
        flex-direction: column;
    }

    .btn-large {
        padding: 14px 30px;
    }
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-container {
    max-width: 480px;
    margin: 3rem auto;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.login-container > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Magic Link Section */
.magic-link-section {
    margin-bottom: 2rem;
}

.magic-link-section .form-group {
    margin-bottom: 1.5rem;
}

.magic-link-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.magic-link-section input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.magic-link-section input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 104, 71, 0.1);
}

/* Success and Error Messages */
.success-message {
    background: #d4edda;
    border-left: 4px solid var(--success-green);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    color: var(--success-green);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.success-message p {
    color: #155724;
    margin-bottom: 0.5rem;
}

.success-message .note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.error-message {
    background: #f8d7da;
    border-left: 4px solid var(--error-red);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.error-message p {
    color: #721c24;
    margin: 0;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: var(--text-gray);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}

/* OAuth Login Buttons */
.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.btn-google {
    background: white;
    color: var(--text-dark);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.btn-google svg {
    flex-shrink: 0;
}

/* Login Footer */
.login-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.login-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.login-footer a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .login-container {
        margin: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .login-buttons {
        gap: 0.75rem;
    }

    .btn-google {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
}
