* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, #fdfbf7 0%, #eee3d5 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    color: #2d2a26;
}

.registration-container {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(184, 137, 112, 0.15), 0 5px 15px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 480px;
    padding: 44px 36px;
    border: 1px solid rgba(224, 86, 56, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    color: #1e1b18;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: #78716c;
    font-size: 14px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 13px;
    font-weight: 600;
    color: #44403c;
}

.input-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e7e5e4;
    border-radius: 12px;
    font-size: 15px;
    background-color: #fafaf9;
    color: #1c1917;
    transition: all 0.25s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #e05638;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(224, 86, 56, 0.12);
}

/* Language Selection Grid */
.language-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: #44403c;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid #e7e5e4;
    border-radius: 10px;
    background-color: #fafaf9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    border-color: #f06449;
    background-color: #fffaf8;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e05638;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 14px;
    color: #292524;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

.terms-checkbox {
    border: none;
    padding: 0;
    background: transparent;
    margin-top: 4px;
}

.terms-checkbox label {
    font-size: 13px;
    color: #78716c;
}

.terms-checkbox label a {
    color: #e05638;
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f06449 0%, #e05638 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 4px 15px rgba(224, 86, 56, 0.3);
    transition: all 0.25s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e05638 0%, #c94427 100%);
    box-shadow: 0 6px 20px rgba(224, 86, 56, 0.4);
    transform: translateY(-1px);
}

.form-footer {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: #78716c;
}

.form-footer a {
    color: #e05638;
    text-decoration: none;
    font-weight: 600;
}

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