/* Auth Page Specific Styles */

/* Auth CTA Buttons */
.auth-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .auth-cta-buttons {
        flex-direction: row;
        gap: 2rem;
    }
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
    flex: 1;
}

.auth-btn.primary {
    background: linear-gradient(135deg, #fff20b, #f6da24);
    color: #1b0e26;
    border: 2px solid #fff20b;
}

.auth-btn.secondary {
    background: linear-gradient(135deg, rgba(246, 218, 36, 0.1), rgba(255, 242, 11, 0.05));
    color: var(--color-white);
    border: 2px solid var(--color-heading);
}

.auth-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(246, 218, 36, 0.3);
}

.auth-btn.primary:hover {
    background: linear-gradient(135deg, #fff761, #f6da24);
    color: #1b0e26;
}

.auth-btn.secondary:hover {
    background: linear-gradient(135deg, rgba(246, 218, 36, 0.2), rgba(255, 242, 11, 0.1));
    color: var(--color-white);
}

.auth-btn-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.auth-btn-content {
    flex: 1;
}

.auth-btn-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-btn-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Auth Preview Card */
.auth-preview-card {
    background: linear-gradient(145deg, rgba(39, 26, 49, 0.95), rgba(27, 14, 38, 0.95));
    border: 2px solid var(--color-heading);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.auth-card-title {
    color: var(--color-heading);
    font-size: 2rem;
    font-weight: 700;
}

.auth-preview-form {
    margin-bottom: 2rem;
}

.preview-input {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(27, 14, 38, 0.8);
    border: 2px solid rgba(246, 218, 36, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-size: 1.4rem;
}

.preview-icon {
    font-size: 1.6rem;
    color: var(--color-heading);
}

.preview-text {
    opacity: 0.7;
}

.preview-button {
    background: linear-gradient(45deg, var(--color-heading), #fff20b);
    color: #1b0e26;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 1.5rem;
}

.auth-card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(246, 218, 36, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 500;
}

.feature-item span:first-child {
    font-size: 1.6rem;
}

/* Access Steps */
.access-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .access-steps {
        flex-direction: row;
        gap: 3rem;
    }
}

.step-card {
    background: rgba(39, 26, 49, 0.6);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(246, 218, 36, 0.2);
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
}

.step-card:hover {
    background: rgba(39, 26, 49, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-heading);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-heading), #fff20b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #1b0e26;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(246, 218, 36, 0.3);
}

.step-content h3 {
    color: var(--color-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.4rem;
}

/* Auth Benefits Grid */
.auth-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: rgba(39, 26, 49, 0.6);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(246, 218, 36, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(39, 26, 49, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-heading);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--color-heading), #fff20b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-title {
    color: var(--color-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #ccc;
    line-height: 1.6;
}

/* Fix for current menu item styling */
.header__nav ul a.currentMenuItem {
    color: var(--color-heading);
    font-weight: 600;
}

/* Responsive Design for Auth Page */
@media (max-width: 768px) {
    .auth-preview-card {
        padding: 2rem;
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .hero.frontpage .hero__wrap {
        flex-direction: column;
        gap: 2rem;
    }

    .hero.frontpage .hero__content {
        width: 100%;
    }

    .hero.frontpage .hero__image {
        width: 100%;
    }

    .auth-cta-buttons {
        flex-direction: column;
    }

    .auth-btn {
        min-height: 70px;
        padding: 1.5rem;
    }

    .auth-btn-title {
        font-size: 1.6rem;
    }

    .auth-btn-subtitle {
        font-size: 1.2rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .step-card {
        padding: 2rem;
    }

    .access-steps {
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .step-content h3 {
        font-size: 1.6rem;
    }

    .step-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .auth-preview-card {
        padding: 1.5rem;
    }

    .auth-card-title {
        font-size: 1.8rem;
    }

    .preview-input {
        padding: 1rem 1.2rem;
        font-size: 1.3rem;
    }

    .preview-button {
        padding: 1.2rem;
        font-size: 1.4rem;
    }

    .auth-btn-icon {
        font-size: 2.5rem;
    }

    .feature-item {
        font-size: 1.2rem;
    }

    .module-title h2 {
        font-size: 2.2rem;
    }

    .auth-card-features {
        gap: 0.8rem;
    }
}