* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: #fdfaf4;
    color: #1f2933;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.page {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    padding: 24px 22px 26px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 20%, #facc15, #f97316 40%, #e11d48 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.02em;
}

.logo-text-main {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-text-sub {
    font-size: 12px;
    color: #64748b;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.button-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.btn {
    appearance: none;
    border: none;
    border-radius: 8px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.btn span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: #44856d;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline {
    background: #ffffff;
    color: #44856d;
    border: 1px solid #44856d;
}

.btn-outline:hover {
    background: #e5edff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.btn-outline .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
}

.form-card {
    border-radius: 8px;
    background: #ffffff;
    padding: 16px 14px 18px;
    border: 1px solid #44856d;
    display: none;
}

.form-card h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-card p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.field {
    margin-bottom: 10px;
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #475569;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #878c8a;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    background: #eef0ee;
    color: #878c8a;
}

.field input:focus,
.field textarea:focus {
    border-color: #44856d;
    background: #f9fbff;
}

.field textarea {
    min-height: 80px;
    resize: vertical;
}

.submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.btn-submit {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.35);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
}

.alert {
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
}

.alert-success {
    background: #ffffff;
    color: #166534;
    border: 1px solid #44856d;
}

.alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.social-title {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}

.footer-note {
    margin-top: 14px;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
}

@media (max-width: 480px) {
    .page {
        padding: 20px 16px 20px;
    }
}
.block{
    display: block;
}