* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #F9F0EA 0%, #FFF8F0 50%, #F5E6DB 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    margin-top: 80px;
}

.content-wrapper {
    width: 100%;
    max-width: 36rem;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 0.75rem;
}

.subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
}

.form-input {
    height: 3rem;
    padding: 0 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #348054;
    box-shadow: 0 0 0 3px rgba(52, 128, 84, 0.1);
}

.btn-submit {
    width: 100%;
    height: 3rem;
    background: #348054;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #2a6844;
}

/* Info Box */
.info-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #F9F0EA;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    gap: 0.75rem;
}

.info-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-text {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.5;
}

.info-text p {
    margin-bottom: 0.5rem;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.info-link {
    color: #348054;
    font-weight: 600;
    text-decoration: underline;
}

.info-link:hover {
    color: #2a6844;
}

/* Success State */
.success-content {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: #348054;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
}

.success-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.success-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #348054;
    border: 2px solid #348054;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

/* Back Link */
.back-link {
    margin-top: 2rem;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

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

/* Footer */
footer {
    background: linear-gradient(180deg, #FAF5F0, #F5EBE1, #F0E5DB);
    padding: 3rem 1.5rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
}

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

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

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

.footer-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #348054;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.footer-description {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-section h4 {
    font-weight: 700;
    color: #000;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

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

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

.footer-links a:hover {
    color: #348054;
}

.lang-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.7);
}

.copyright {
    border-top: 1px solid #d1d5db;
    padding-top: 1rem;
    text-align: center;
}

.copyright p {
    color: #374151;
    font-size: 0.75rem;
}

.hidden {
    display: none;
}