/* Страница регистрации — макет Revowinter (Cinzel + Source Sans 3) */

:root {
    --dd-red: #e31837;
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #64748b;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f1f5f9;
    --gray: #94a3b8;
    --glass: rgba(15, 23, 42, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-elevated: rgba(15, 23, 42, 0.82);
    --surface-card: rgba(15, 23, 42, 0.9);
    --surface-deep: rgba(10, 14, 20, 0.96);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
    --bg-page: #080c12;
    --rw-font-display: 'Cinzel', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
    --rw-font-ui: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --rw-text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
    --rw-text-sm: clamp(0.8125rem, 0.78rem + 0.18vw, 0.9375rem);
    --rw-text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
    --rw-btn: clamp(0.875rem, 0.82rem + 0.35vw, 1.0625rem);
    --success: #10b981;
    --error: #f87171;
    --transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    --shadow-card: 0 24px 56px rgba(0, 12, 40, 0.55);
    --radius: 8px;
    --radius-card: 14px;
    --input-glass-bg: rgba(15, 23, 42, 0.65);
    --text-body: #cbd5e1;
    --text-muted: var(--gray);
    --text-heading: var(--light);
    --text-heading-strong: #ffffff;
    --accent-primary: var(--primary);
    --accent-primary-hover: var(--primary-dark);
    --accent-link: #7dd3fc;
    --accent-glow: rgba(14, 165, 233, 0.45);
    --bg-input: rgba(15, 23, 42, 0.65);
    --border-subtle: var(--glass-border);
    --border-muted: rgba(255, 255, 255, 0.12);
    --bg-panel-deep: var(--surface-deep);
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--rw-font-ui);
    font-weight: 400;
    background: var(--bg-page);
    color: #cbd5e1;
    line-height: 1.55;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--bg-page);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, .welcome-title, .form-title, .rw-logo-text, .rw-lang-btn, .rw-cta-button {
    font-family: var(--rw-font-display);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 12px;
    animation: fadeInDown 0.8s ease;
}

.rw-logo-text {
    font-size: clamp(1.05rem, 0.95rem + 0.75vw, 1.65rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.22;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.rw-logo-text:hover {
    color: var(--primary);
}

.rw-language-switcher {
    position: relative;
    z-index: 1000;
}

.rw-lang-switcher {
    position: relative;
}

.rw-lang-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 18px;
    color: var(--light);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--rw-font-display);
    font-size: var(--rw-text-base);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.rw-lang-btn:hover {
    background: rgba(110, 184, 216, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.header .rw-lang-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
}

.header .rw-lang-dropdown.show {
    transform: translateX(-50%) translateY(0);
}

.rw-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10, 14, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    min-width: 200px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, visibility 0.22s, transform 0.22s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    overflow: hidden;
}

.rw-lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rw-lang-option {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(248, 250, 252, 0.92);
    font-size: var(--rw-text-base);
    font-family: var(--rw-font-ui);
    text-decoration: none;
    background: transparent;
    width: 100%;
    text-align: left;
    position: relative;
}

.rw-lang-option:last-child {
    border-bottom: none;
}

.rw-lang-option:hover {
    background: rgba(110, 184, 216, 0.12);
}

.rw-lang-option.is-active {
    background: rgba(110, 184, 216, 0.2);
    color: #fff;
    font-weight: 600;
}

.rw-lang-option.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--primary);
}

.rw-lang-option .rw-lang-check {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0;
    color: var(--primary);
    transition: opacity 0.2s;
}

.rw-lang-option.is-active .rw-lang-check {
    opacity: 1;
}

.rw-flag-img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    pointer-events: none;
}

.rw-lang-btn .fa-chevron-down {
    font-size: 0.72em;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.rw-lang-btn[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.main-content {
    display: flex;
    width: 100%;
    position: relative;
    background: var(--surface-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.welcome-section .rw-starfield {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.rw-star {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    margin-left: calc(var(--s) * -0.5);
    margin-top: calc(var(--s) * -0.5);
    border-radius: 50%;
    pointer-events: none;
    background: #e2e8f0;
    box-shadow:
        0 0 calc(var(--s) * 2.4) rgba(255, 255, 255, 0.35),
        0 0 calc(var(--s) * 5.5) rgba(14, 165, 233, 0.08);
    animation:
        rw-star-drift var(--dur, 72s) ease-in-out infinite alternate,
        rw-star-twinkle var(--tw, 3.8s) ease-in-out infinite;
}

.rw-star--cyan {
    background: #7dd3fc;
    box-shadow:
        0 0 calc(var(--s) * 2.6) rgba(14, 165, 233, 0.5),
        0 0 calc(var(--s) * 6) rgba(2, 132, 199, 0.15);
}

.rw-star--violet {
    background: #cbd5e1;
    box-shadow:
        0 0 calc(var(--s) * 2.6) rgba(148, 163, 184, 0.45),
        0 0 calc(var(--s) * 6) rgba(100, 116, 139, 0.12);
}

.rw-star--fine {
    box-shadow: 0 0 calc(var(--s) * 1.8) rgba(148, 163, 184, 0.45);
}

@keyframes rw-star-drift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(var(--dx), var(--dy), 0); }
}

@keyframes rw-star-twinkle {
    0%, 100% { opacity: 0.18; }
    35% { opacity: 0.55; }
    55% { opacity: 1; }
    70% { opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
    .rw-star {
        animation: none;
        opacity: 0.5;
    }
}

.welcome-section {
    flex: 1;
    background-color: #0d141f;
    background-image: url('../media/1778145772836-019e01be-8b06-721f-89c4-b10917c86e91.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-body);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--glass-border);
}

.welcome-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(8, 14, 24, 0.82) 0%,
        rgba(10, 18, 32, 0.68) 45%,
        rgba(8, 12, 20, 0.78) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.welcome-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), rgba(56, 189, 248, 0.55) 42%, rgba(14, 165, 233, 0.12));
    pointer-events: none;
    z-index: 3;
}

#formData {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.welcome-title {
    font-family: var(--rw-font-display);
    font-size: clamp(21px, 2.6vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.28;
    position: relative;
    z-index: 4;
}

.welcome-text {
    font-family: var(--rw-font-ui);
    font-size: 14px;
    line-height: 1.58;
    color: #b8c4d4;
    margin-bottom: 18px;
    position: relative;
    z-index: 4;
}

.features {
    list-style: none;
    margin-top: 10px;
    position: relative;
    z-index: 4;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 1.5;
    font-family: var(--rw-font-ui);
    color: #cbd5e1;
}

.features i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 14px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.45));
}

.form-section {
    flex: 1;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--surface-deep);
}

.form-title {
    font-family: var(--rw-font-display);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
    color: var(--light);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 17px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: var(--rw-font-ui);
    color: var(--light);
    transition: var(--transition);
    font-size: 13px;
    line-height: 1.45;
}

.form-input {
    width: 100%;
    max-width: 100%;
    padding: 7px 34px 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.4;
    font-family: var(--rw-font-ui);
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.65);
    background-color: rgba(15, 23, 42, 0.65);
    color: var(--light);
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--light);
    caret-color: var(--light);
    -webkit-box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 99999s ease-out;
}

.form-input.valid:-webkit-autofill,
.form-input.valid:-webkit-autofill:hover,
.form-input.valid:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    border-color: var(--success);
}

.form-input.error:-webkit-autofill,
.form-input.error:-webkit-autofill:hover,
.form-input.error:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    border-color: var(--error);
}

.form-input:focus:-webkit-autofill {
    border-color: rgba(14, 165, 233, 0.65);
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.45),
        0 0 22px rgba(14, 165, 233, 0.28),
        0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
}

.form-input:autofill {
    box-shadow: 0 0 0 1000px rgba(15, 23, 42, 0.85) inset;
    color: var(--light);
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus {
    outline: none;
    border-color: rgba(14, 165, 233, 0.65);
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.5),
        0 0 20px rgba(14, 165, 233, 0.35),
        0 0 36px rgba(14, 165, 233, 0.12);
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

.form-input.error:focus {
    border-color: var(--error);
    box-shadow:
        0 0 0 1px rgba(248, 113, 113, 0.55),
        0 0 18px rgba(248, 113, 113, 0.2);
}

.form-input.valid {
    border-color: var(--success);
}

.form-input.valid:focus {
    border-color: var(--success);
    box-shadow:
        0 0 0 1px rgba(16, 185, 129, 0.45),
        0 0 18px rgba(16, 185, 129, 0.18);
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-family: var(--rw-font-ui);
    color: var(--gray);
    line-height: 1.55;
}

.validation-icon {
    position: absolute;
    right: 10px;
    top: 35px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.validation-icon.valid {
    color: var(--success);
}

.validation-icon.error {
    color: var(--error);
}

.validation-message {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    font-family: var(--rw-font-ui);
    color: var(--error);
    opacity: 0;
    transform: translateY(-4px);
    transition: var(--transition);
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.checkbox-group:first-of-type {
    margin-top: 20px;
}

.checkbox-group + .checkbox-group {
    margin-top: 14px;
}

.checkbox {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
    font-family: var(--rw-font-ui);
    color: #cbd5e1;
    padding-top: 0;
}

.checkbox-label a {
    color: #7dd3fc;
    text-decoration: none;
    transition: var(--transition);
}

.checkbox-label a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.rw-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    padding: 11px 28px;
    border-radius: 50px;
    font-size: clamp(0.8rem, 0.76rem + 0.2vw, 0.94rem);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    width: fit-content;
    max-width: min(100%, 22.5rem);
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    font-family: var(--rw-font-display);
}

.rw-cta-button:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.rw-cta-button:active:not(:disabled) {
    transform: translateY(-2px);
}

.rw-cta-button:disabled {
    background: #334155;
    color: var(--gray);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.rw-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 22px;
}

.rw-social-link {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.15rem;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.rw-social-link:hover {
    background: rgba(14, 165, 233, 0.14);
    border-color: rgba(14, 165, 233, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

.footer {
    margin-top: 12px;
    text-align: center;
    color: var(--gray);
    font-size: 12px;
    font-family: var(--rw-font-ui);
    line-height: 1.72;
    animation: fadeIn 1s ease;
}

.footer p + p {
    margin-top: 0.55em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .welcome-section {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 20px 18px;
    }

    .welcome-section::after {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        background: linear-gradient(90deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.5) 50%, rgba(14, 165, 233, 0.1));
    }

    .form-section {
        padding: 20px 18px;
    }
}

@media (max-width: 576px) {
    body {
        padding: max(12px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    }

    .main-content {
        border-radius: 12px;
    }

    .header {
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

    .rw-logo-text {
        font-size: clamp(16px, 5.2vw, 22px);
        line-height: 1.28;
    }

    .rw-language-switcher {
        width: 100%;
    }

    .rw-lang-switcher {
        width: 100%;
    }

    .rw-lang-btn {
        width: 100%;
        justify-content: center;
    }

    .header .rw-lang-dropdown {
        left: 0;
        right: 0;
        min-width: unset;
        transform: translateY(-8px) scale(0.98);
    }

    .header .rw-lang-dropdown.show {
        transform: translateY(0);
    }

    .welcome-section,
    .form-section {
        padding: 22px max(18px, env(safe-area-inset-left)) 24px max(18px, env(safe-area-inset-right));
    }

    .welcome-title {
        font-size: clamp(20px, 6vw, 26px);
        margin-bottom: 16px;
    }

    .welcome-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .features li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    #formData {
        max-width: 100%;
    }

    .form-title {
        font-size: clamp(16px, 4.5vw, 20px);
        margin-bottom: 16px;
        padding: 0 4px;
    }

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

    .form-label {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 2px;
    }

    .form-input {
        min-height: 48px;
        padding: 12px 44px 12px 14px;
        border-radius: 8px;
        font-size: 16px;
    }

    .form-input:focus {
        border-radius: 8px;
    }

    .form-hint {
        margin-top: 8px;
        font-size: 13px;
        padding-left: 2px;
    }

    .validation-icon {
        right: 13px;
        top: 42px;
        font-size: 16px;
    }

    .validation-message {
        position: static;
        display: none;
        margin-top: 8px;
        margin-bottom: 0;
        padding-left: 2px;
        text-align: left;
        max-width: 100%;
    }

    .validation-message.show {
        display: block;
        transform: none;
    }

    .checkbox-group {
        margin: 0;
        gap: 12px;
        align-items: center;
    }

    .checkbox-group:first-of-type {
        margin-top: 18px;
    }

    .checkbox-group + .checkbox-group {
        margin-top: 16px;
    }

    .checkbox {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin: 0;
    }

    .checkbox-label {
        font-size: 14px;
        line-height: 1.5;
    }

    .rw-cta-button {
        min-height: 46px;
        padding: 11px 22px;
        font-size: var(--rw-text-sm);
        border-radius: 50px;
        margin-top: 22px;
        max-width: min(100%, 22.5rem);
        margin-left: auto;
        margin-right: auto;
    }

    .rw-social-links {
        gap: 14px;
        margin-top: 24px;
        padding: 0 8px;
    }

    .rw-social-link {
        width: 48px;
        height: 48px;
        font-size: 1.56rem;
    }

    .footer {
        font-size: 13px;
        padding: 0 8px;
    }
}

@media (max-width: 380px) {
    .rw-lang-btn {
        font-size: var(--rw-text-sm);
    }

    .welcome-section,
    .form-section {
        padding: 18px 14px 20px;
    }
}
