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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #374151;
    background: linear-gradient(to bottom right, #dbeafe, #d1fae5);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #1f2937;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

/* Colors */
.text-blue { color: #3b82f6; }
.text-green { color: #10b981; }
.text-purple { color: #8b5cf6; }
.text-red { color: #ef4444; }
.text-white { color: white !important; }

.bg-blue { background-color: #dbeafe; color: #3b82f6; }
.bg-green { background-color: #d1fae5; color: #10b981; }
.bg-purple { background-color: #ede9fe; color: #8b5cf6; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-green {
    background-color: #10b981;
    color: white;
}

.btn-green:hover {
    background-color: #059669;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.btn-outline:hover {
    background-color: #f3f4f6;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.btn-nav:hover {
    background-color: #2563eb;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #3b82f6;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.2;
    max-width: 200px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #3b82f6;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-white {
    background-color: white;
}

.bg-gray {
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 0.5rem;
}

.section-description {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-text {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.card-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Partnership Section */
.partnership-section {
    margin-top: 4rem;
    background: linear-gradient(to right, #f0fdf4, #f0f9ff);
    border-radius: 0.75rem;
    padding: 2rem;
}

.partnership-content {
    text-align: center;
}

.partnership-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.partnership-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.abt-logo {
    height: 4rem;
    width: auto;
}

.partnership-text {
    width: 100%;
}

.partnership-text p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.partnership-link {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
}

.partnership-link:hover {
    color: #2563eb;
}

/* Quote Section */
.quote-section, .about-section {
    padding: 5rem 0;
    background: linear-gradient(to right, #f0fdf4, #f0f9ff);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.quote-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    color: #6b7280;
    font-weight: 600;
}

.offer-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 0.5rem;
    border-left: 4px solid #10b981;
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.offer-text {
    color: #374151;
    margin-bottom: 1rem;
}

.kintsugi-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    font-style: italic;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #6b7280;
}

/* Info Section */
.info-section {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.info-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.info-text {
    margin-bottom: 1.5rem;
}

.trauma-types {
    list-style: none;
    color: #6b7280;
}

.trauma-types li {
    margin-bottom: 0.5rem;
}

.important-notice {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 2rem;
}

.important-notice p {
    color: #92400e;
    margin: 0;
}

/* Form */
.form-wrapper {
    max-width: 32rem;
    margin: 0 auto;
}

.form-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.form-content {
    padding: 1.5rem;
}

.patient-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    /* padding: 0.75rem; */
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-notice {
    background-color: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 0.5rem;
    padding: 1rem;
}

.form-notice p {
    color: #1e40af;
    margin: 0;
    font-size: 0.875rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
}

.contact-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: #6b7280;
    font-size: 0.875rem;
}

/* FAQ */
.faq-section {
    max-width: 32rem;
    margin: 0 auto;
}

.faq-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-title {
    font-size: 1.25rem;
}

.faq-content {
    padding: 1.5rem;
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #93c5fd;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-abt-logo {
    margin-bottom: 1rem;
}

.abt-logo-footer {
    height: 3rem;
    width: auto;
}

.footer-link {
    color: #93c5fd;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-info {
        flex-direction: row;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e7eb;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 20rem;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .quote-content {
        order: 2;
    }

    .image-content {
        order: 1;
    }
}


/* Main Content login */
.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Welcome Section */
.login-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-content {
    max-width: 400px;
}

.welcome-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
}

/* Login Form Section */
.login-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.login-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.login-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.login-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.login-card-content {
    padding: 0 2rem 2rem;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.label-icon {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: white;
}

.form-input.error {
    border-color: #ef4444;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #374151;
}

.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-input {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
}

.checkbox-custom {
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Button Loading State */
.button-text {
    transition: opacity 0.2s ease;
}

.button-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn.loading .button-text {
    opacity: 0;
}

.btn.loading .button-spinner {
    opacity: 1;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Divider */
.form-divider {
    position: relative;
    text-align: center;
    margin: 1rem 0;
}

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

.form-divider span {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Alternative Actions */
.alternative-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.signup-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.back-home:hover {
    color: #374151;
}

.back-icon {
    width: 1rem;
    height: 1rem;
}

.forgot-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .login-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .welcome-title {
        font-size: 3rem;
    }

    .form-options {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .login-main {
        padding: 1rem 0;
    }

    .welcome-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .login-card {
        margin: 0 auto;
    }

    .partnership-content {
        flex-direction: column;
        text-align: center;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {

    .login-card-header,
    .login-card-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}



/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-item.active {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(0.5rem);
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background-color: #3b82f6;
    color: white;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.step-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Security Info */
.security-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.security-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

/* Validation Container */
.validation-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
.validation-main {
    flex: 1;
    padding: 2rem 0;
}

.validation-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: flex-start;
}

.formularios-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 400px; */
    gap: 3rem;
    align-items: flex-start;
}

/* Information Section */
.validation-info {
    max-width: 100%;
    max-height: calc(132vh);
    overflow-y: auto;
    border-radius: 1rem;
}

.info-content {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.intro-text {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.description-text {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.link-text {
    margin-top: 1rem;
}

.link-text a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.link-text a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.section-title {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background-color: #3b82f6;
    border-radius: 2px;
}

.objectives-list,
.conditions-list,
.requirements-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.objectives-list li,
.conditions-list li,
.requirements-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #374151;
}

.pricing-info {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.pricing-text {
    color: #1e40af;
    margin: 0;
    line-height: 1.6;
}

.pricing-text a {
    color: #1e40af;
    text-decoration: underline;
}

.important-note {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.important-note p {
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

/* Form Section - Fixed */
.validation-form-section {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.validation-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: 100%;
}

/* Form Steps */
.form-step {
    transition: all 0.3s ease;
}

.form-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
}

.form-content {
    padding: 0 2rem 2rem;
}

/* Success/New User Indicators */
.success-indicator,
.new-user-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.success-icon {
    width: 3rem;
    height: 3rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.new-user-icon {
    width: 3rem;
    height: 3rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

/* User Info */
.user-info {
    background-color: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.user-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-icon {
    width: 1rem;
    height: 1rem;
    color: #3b82f6;
}

.user-message {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Form Styles */
.email-form,
.new-user-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.label-icon {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: white;
}

.form-input.error {
    border-color: #ef4444;
}

.form-input:read-only {
    background-color: #f9fafb;
    color: #6b7280;
}

/* Password Input */
.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #374151;
}

/* Password Requirements */
.password-requirements {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.requirements-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: #0369a1;
    margin-bottom: 0.5rem;
}

.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.requirements-list li {
    font-size: 0.75rem;
    color: #6b7280;
    position: relative;
    padding-left: 1rem;
}

.requirements-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: #d1d5db;
}

.requirements-list li.valid {
    color: #10b981;
}

.requirements-list li.valid::before {
    content: '✓';
    color: #10b981;
}

/* Terms Group */
.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-input {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

.checkbox-custom {
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.terms-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Button Loading State */
.button-text {
    transition: opacity 0.2s ease;
}

.button-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn.loading .button-text {
    opacity: 0;
}

.btn.loading .button-spinner {
    opacity: 1;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Footer */
.form-footer {
    padding: 1rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(249, 250, 251, 0.8);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.btn-back:hover {
    color: #374151;
}

.back-icon {
    width: 1rem;
    height: 1rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.back-home:hover {
    color: #374151;
}

.home-icon {
    width: 1rem;
    height: 1rem;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .validation-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .validation-form-section {
        position: static;
        order: -1;
    }
    
    .validation-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .validation-main {
        padding: 1rem 0;
    }

    .info-content {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.125rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-subtitle {
        display: none;
    }

    .form-header,
    .form-content,
    .form-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .info-content {
        padding: 1rem;
    }
}

/* Disabled Registration Notice Styles */
.disabled-registration-notice {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f8fafc;
    border-radius: 0.75rem;
    border: 2px dashed #cbd5e1;
    margin-bottom: 1.5rem;
}

.notice-icon {
    margin-bottom: 1rem;
}

.notice-icon-svg {
    width: 3rem;
    height: 3rem;
    color: #64748b;
    opacity: 0.7;
}

.notice-content {
    margin-bottom: 0;
}

.notice-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.notice-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.notice-info {
    color: #4b5563;
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.notice-info strong {
    color: #1f2937;
    font-weight: 600;
}

/* Responsive adjustments for notice */
@media (max-width: 480px) {
    .disabled-registration-notice {
        padding: 1.5rem 0.75rem;
    }
    
    .notice-icon-svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .notice-title {
        font-size: 1.125rem;
    }
}