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

:root {
    --primary-color: #fad963;
    --second-color: #008cb5;
    --text-color: #948b84;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'baloo';
    src: url('BalooBhaijaan2-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'baloo';
    src: url('BalooBhaijaan2-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'baloo', sans-serif;
    overflow-x: hidden;

}

.body-bg {
    background: url(https://www.prewebsite.ir/kidful/Line2.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px 480px;
}

.kidful-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: transparent;
    position: relative;
    padding: 40px 50px 90px;
    overflow: hidden;
    background: url(Right\ Side\ BG1-02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0%;
}

.logo-container {
    position: absolute;
    top: 40px;
    left: 50px;
    z-index: 10;
}

.logo-container img {
    width: 280px;
    height: auto;
}

.right-content {
    flex: 1;
    max-width: 50%;
    z-index: 2;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.main-description {
    color: var(--second-color);
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 30px;
	padding-left: 0px;

}

.main-description strong {
    font-size: 1.3rem;
    color: #008cb5;
    font-weight: 900;
}

.btn-sample {
    align-self: flex-end;
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--second-color);
    text-decoration: none;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-sample:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 226, 104, 0.5);
}

.products-container {
    margin-top: 64px;
    text-align: center;
}



.products-container img {
    max-width: 100%;
    height: auto;
    width: 55%;
	margin-right: 90px;}

.left-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
    position: absolute;
    width: 64%;
    top: -70%;
    left: -20%;
}

.mother-graphic {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 860px) {
    .kidful-banner {
        flex-direction: column-reverse;
        padding: 20px;
    }
	.products-container img{
		margin-right: 0px;
	}

    .right-content {
        max-width: 100%;
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
        margin-top: -200px;
    }

    .body-bg {
        background: none;
        overflow-x: clip;
    }

    .kidful-green-back {
        overflow-x: clip;

    }

    .logo-container {
        top: 0;
        left: 0;
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }
	  .logo-container img{
		  width: 120px;
	  }

    .main-description {
        text-align: center;
        margin-bottom: 4px;
		font-size: 0.9rem;
    }
	.main-description strong{
		font-size: 1.1rem;
	}
}

/* pr */
.kidful-pr-left-wrapper {
    position: relative;
    padding: 60px;
    text-align: right;
    font-family: 'baloo', sans-serif;
    color: var(--text-color);
    padding-top: 0;
    display: flex;
    flex-direction: column;
	padding-left: 0;
	    margin-right: 28px;
}
.pr-le-kid{
	    padding: 30px;
    padding-left: 0;
}
.kidful-pr.first {
    background-image: url(YellowBG.webp);
    background-repeat: no-repeat;
    background-position: 130%;
    background-size: contain;
	padding: 0 40px;
	margin-top: 32px;
}

section.kidful-pr {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.kidful-pr-right {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
}

.kidful-pr-left {
    width: 580px;
}

.kidful-pr-left-animated-bird {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 110px;
    height: auto;
    z-index: 10;
    animation: kidful-pr-left-curiousBird 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: center bottom;
}

.kidful-pr-left-animated-star {
    position: absolute;
    top: -100px;
    left: 100px;
    width: 110px;
    height: auto;
    z-index: 10;
    animation: kidful-pr-left-star 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform-origin: center bottom;
}

.kidful-pr-left-heart {
    width: 24px;
}

/* فریم‌های انیمیشن پرنده اختصاصی */
@keyframes kidful-pr-left-curiousBird {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    15% {
        transform: translateY(-15px) rotate(-6deg);
    }

    30% {
        transform: translateY(-8px) rotate(4deg);
    }

    45% {
        transform: translateY(-18px) rotate(-2deg);
    }

    60% {
        transform: translateY(-6px) rotate(5deg);
    }

    75% {
        transform: translateY(-12px) rotate(-3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes kidful-pr-left-star {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(4deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.kidful-pr-left-header {
    margin-bottom: 8px;
}

.kidful-pr-left-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
}

.kidful-pr-left-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
	line-height: 40px;
}

.kidful-pr-left-highlight-desc.gr {
    color: #04ab81;
}

.kidful-pr-left-highlight-desc.or {
    color: #f89522;
}

.kidful-pr-left-highlight-desc {
    font-size: 27px;
    color: #2ebddb;
    font-weight: normal;
    margin: 0;
	white-space: nowrap;
}

.kidful-pr-left-highlight-desc strong {
    font-weight: bold;
}

.kidful-pr-left-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0 8px;
    gap: 8px;
}

.kidful-pr-left-line {
    flex: 1;
    height: 2px;
    background-color: #a5a198;
    border-radius: 2px;
}

.kidful-pr-left-heart-icon {
    width: 18px;
    height: 18px;
    fill: #f2d172;
}

.kidful-pr-left-features-list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.kidful-pr-left-features-list li {
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 4px;
    padding-right: 30px;
}

.kidful-pr-left-features-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='29' height='24' viewBox='0 0 29 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5321 24C29.7121 17.14 29.0021 7.84 29.0021 7.84C29.0021 3.51 25.4421 0 21.0421 0C18.3321 0 15.9421 1.34 14.5021 3.37C13.0621 1.33 10.6721 0 7.9621 0C3.5721 0 0.00209866 3.51 0.00209866 7.84C0.0120987 7.83 -0.647902 17.14 14.5321 24Z' fill='%23FFE471'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.kidful-pr-left-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    padding: 8px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-end;
}

@media (max-width: 600px) {
    .kidful-pr-left-wrapper {
        padding: 0px;
    }

    .kidful-pr-left-animated-bird {
        width: 80px;
        top: -10px;
        left: 10px;
    }

    .left-content {
        position: relative;
        top: -200px;
        left: -140px;
        width: 100%;
    }

    .kidful-pr-left-title {
        font-size: 18.5px;
    }

    .kidful-pr-left-features-list li {
        font-size: 1.1rem;
    }
}

/* prleft */
section.kidful-prleft {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-position: 150%;
    background-size: 50%;
    position: relative;
    margin-bottom: 260px;
    margin-top: 260px;

}

.kidful-prbox {
    position: relative;
	padding: 0 40px 140px;
}

section.kidful-prbox::before {
    content: "";
    background: url(YellowBG.webp);
    background-repeat: no-repeat;
    background-size: 50%;
    position: absolute;
    bottom: 18px;
    width: 100%;
    left: -300px;
    top: 22%;
}

.kidful-pr-right .pr-image {
    width: 75%;
}

.kidful-ear-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.kidful-ear-title {}

.kidful-pr-left-divider.ear {
    width: 30%;
}

.kidful-ear-title p {
    text-align: center;
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-color);
}

/* goosh */
section.kidful-ear {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.kidful-ear-img {
    width: 80%;
    margin: auto;
}

/* family */
/* کانتینر اصلی */
.kidful-family-wrapper {
    position: relative;
    max-width: 900px;
    /* عرض کلی بخش، قابل تنظیم */
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    font-family: 'baloo', sans-serif;
    color: var(--text-color);
    background-color: transparent;
    /* بدون بک‌گراند طبق درخواست شما */
}

/* =========================================
   بخش بالایی (دکمه و پروانه‌ها)
========================================= */
.kidful-family-top-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    margin-bottom: 30px;
}

.kidful-family-top-decor-img {}

.kidful-family-btn {
    position: relative;
    z-index: 2;
    /* لایه رویی */
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 10px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    min-width: 240px;
}

.kidful-family-text-section {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.kidful-family-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
	text-align: center;
}

.kidful-family-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 555px;
    margin: 0 auto 20px auto;
    gap: 12px;
}

.kidful-family-line {
    flex: 1;
    height: 2px;
    background-color: #a5a198;
    border-radius: 2px;
}

.kidful-family-heart-icon {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}
.kidful-family-desc {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
}

.kidful-family-image-section {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    z-index: 1;
}

.kidful-family-bottom-decor-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    z-index: -1;
    pointer-events: none;
}


.kidful-family-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .kidful-family-title {
        font-size: 1.1rem;
        margin-top: 32px;
    }

    .kidful-family-desc {
        font-size: 1rem;
    }

    .kidful-family-top-decor-img {
        width: 120%;

    }
}

/* کانتینر اصلی */
.kidful-community-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'baloo', sans-serif;
    color: var(--text-color);
    gap: 0px;
    background-color: transparent;
}

/* ستون‌های محتوا */
.kidful-community-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* عناوین */
.kidful-community-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* خطوط و قلب وسط */
.kidful-community-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 92%;
    margin: 0 auto 20px auto;
    gap: 12px;
}

.kidful-community-line {
    flex: 1;
    height: 2px;
    background-color: #a5a198;
    border-radius: 2px;
}

.kidful-community-heart-icon {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

/* متون توضیحی */
.kidful-community-desc {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.9;
    color: var(--text-color);
    max-width: 420px;
}

.kidful-community-desc strong {
    font-weight: 800;
}

/* تنظیمات لینک عکس دکمه */
.kidful-community-btn-link {
    display: inline-block;
    margin-top: auto;
    /* این ویژگی باعث می‌شود اگر ارتفاع متن‌ها فرق داشت، دکمه‌ها همیشه در پایین تراز شوند */
    transition: transform 0.3s ease;
    width: 100%;
}

.kidful-community-btn-link:hover {
    transform: translateY(-3px);
    /* یک افکت بسیار ملایم برای کلیک‌پذیری */
}

/* عکس‌های دکمه */
.kidful-community-btn-img {
    max-width: 260px;
}

/* خط چین عمودی جداکننده */
.kidful-community-separator {
    width: 1px;
    border-right: 2px dashed #b8b4ab;
    margin: 0 15px;
}


@media (max-width: 768px) {
    .kidful-community-wrapper {
        flex-direction: column;
        gap: 30px;
        padding-top: 32px;
    }

    .kidful-community-title {
        font-size: 1.4rem;
    }

    .kidful-community-desc {
        font-size: 1rem;
    }

    .kidful-community-separator {
        width: 100%;
        height: 1px;
        border-right: none;
        border-top: 2px dashed #b8b4ab;
        margin: 20px 0;
		display: none;
    }
}

/* footer */
.kidful-footer-wrapper {
    position: relative;
    width: 100%;
    background: url('https://www.prewebsite.ir/kidful/Footer%20BG-01.webp') no-repeat bottom center;
    background-size: cover;
    padding: 80px 40px;
    font-family: 'baloo', sans-serif;
    color: var(--text-color);
    overflow: hidden;
}

.pr-ear-box {
    width: 100%;
    display: flex;
    gap: 16px;
    flex-direction: row;
    margin-top: 32px;
    justify-content: center;
}

.pr-ear-box img {
    width: 20%;
}

.kidful-footer-wrapper::before {
    content: "";
    background: url(Group\ 3.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    width: 100px;
    height: 200px;
    left: 40px;
}

.kidful-footer-wrapper::after {
    content: "";
    background: url(Group\ 2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0px;
    width: 100px;
    height: 180px;
    right: 40px;
}

.kidful-footer-btn-container {
    text-align: center;
    margin-bottom: 100px;
}

.kidful-footer-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 8px 30px;
    border: 1.5px solid var(--primary-color);
    /* رنگ زرد حاشیه */
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kidful-footer-top-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    /* تغییر رنگ متن در زمان هاور برای زیبایی بیشتر */
}

/* کانتینر درونی برای محدود کردن عرض و چیدمان */
.kidful-footer-inner {
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* جایگاه لوگو (Absolute برای دسکتاپ تا متن وسط بماند) */
.kidful-footer-logo-box {
    position: absolute;
    left: 12px;
    top: -80px;
    width: 150px;
}

.kidful-footer-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* بخش محتوای متنی */
.kidful-footer-content-box {
    max-width: 850px;
    text-align: center;
    z-index: 2;
    /* قرارگیری روی پس‌زمینه */
}

.kidful-footer-main-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-color);
}

.kidful-footer-main-text strong {
    font-weight: 800;
}

/* خط جداکننده */
.kidful-footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 30px auto;
    gap: 15px;
}

.kidful-footer-line {
    flex: 1;
    height: 2px;
    background-color: #a5a198;
    border-radius: 2px;
}

.kidful-footer-heart {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

.kidful-footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.kidful-footer-info-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kidful-footer-info-right {
    text-align: right;
}

.kidful-footer-info-left {
    align-items: flex-end;
    /* برای چپ‌چین کردن در حالت RTL */
}

.kidful-footer-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}



.kidful-footer-social-icon {
    width: 22px;
    height: 22px;
    color: var(--text-color);
}

/* =========================================
   ریسپانسیو برای تبلت و موبایل
========================================= */
@media (max-width: 992px) {
    .kidful-footer-inner {
        flex-direction: column;
        align-items: center;
    }

    /* تغییر وضعیت لوگو از حالت شناور به حالت عادی در موبایل */
    .kidful-footer-logo-box {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 30px;
    }

    .kidful-footer-info-row {
        flex-direction: column;
        gap: 12px;
		padding-bottom: 132px;
	}
	.kidful-footer-main-text{
		margin-bottom: 12px;
	}
	.kidful-footer-divider{
		margin-bottom: 12px;
	}

    .kidful-footer-info-right {
        text-align: center;
    }

    .kidful-footer-info-left {
        align-items: center;
    }
}

.kidful-green-back {
    position: relative;
}

.kidful-green-back::before {
    content: "";
    position: absolute;
    bottom: 18px;
    width: 100%;
    right: -60%;
    top: -60%;
    background: url(Right\ Side\ BG3-01.svg) no-repeat;
    background-position: center;
    z-index: -1;
}

.kidful-green-back::after {
    background: url(Left\ Side\ BG3-01.svg) no-repeat;
    content: "";
    position: absolute;
    bottom: -18px;
    width: 100%;
    left: -50%;
    top: 30%;
    background-position: center;
    z-index: -1;
    transform: rotate(180deg);
}


@media (max-width: 768px) {

    /* ::after,
    ::before {
        display: none;
    } */

    .kidful-family-top-section {
        display: none;
    }

    section.kidful-pr.first {
        flex-direction: column;
		margin-top: 32px;
		padding: 0 16px;
    }
	p.kidful-pr-left-highlight-desc {
    font-size: 20px;
}

    .kidful-pr-right,
    .kidful-pr-left {
        width: 100%;
    }

    section.kidful-prleft {
        margin-top: 64px;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .kidful-pr-left-btn {
    margin-left: 0;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
}

    section.kidful-pr {
        flex-direction: column;
        margin-top: 64px;
    }

    .kidful-prbox {
        padding: 0 16px 64px;
    }

    .kidful-ear-title p {
        font-size: 1.1rem;
    }

    .kidful-pr-left-divider.ear {
        width: 92%;
    }

    .kidful-family-text-section {
        margin-bottom: 32px;
		padding: 0 20px;
    }
	.kidful-family-image-section {
    padding: 0 20px;
}

    .kidful-ear-img {
        width: 94%;
    }

    .kidful-footer-btn-container {
        margin-bottom: 40px;
    }

    .kidful-family-bottom-decor-img {
        width: 100vw;
    }

    .right-content .products-container {
        order: 1;
        margin-top: 12px;
    }

    .right-content a.btn-sample {
    order: 2;
    align-self: center;
    margin-top: 12px;
    font-size: 1rem;
}

    .kidful-pr-left-animated-star {
        position: absolute;
        top: 100px;
        right: 10px;
        width: 110px;
        height: auto;
        z-index: 10;
        animation: kidful-pr-left-star 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
        transform-origin: center bottom;
        left: auto;
    }

    .kidful-pr.first {
        background-position: top;
    }

    section.kidful-prbox::before {
        content: "";
        background: url(YellowBG.webpg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: 18px;
        width: 100%;
        left: -150px;
        top: 0;
    }

    footer.kidful-footer-wrapper {
        padding: 0 20px;
    }
	.kidful-footer-info-item{
		font-size: 0.8rem;
	}
}
@media (min-width: 1640px) {
	.left-content{
		top: -70%;
	}
	.kidful-footer-wrapper{
		background-position: center;
	}
	section.kidful-prbox::before {
		top: 30%;
	}
	.kidful-pr.first{
		margin-top: 0px;
	}
	.kidful-banner{
		padding-bottom: 190px;
	}
	.kidful-pr-left-wrapper{
		padding: 0px;
	}
	.kidful-pr-right .pr-image{
		width: 80%;
	}
	.kidful-pr-left-highlight-desc {
    font-size: 30.2px;
	}
	.kidful-pr-left-features-list li {
    margin-bottom: 16px;
	}
	.kidful-prbox{
		padding-bottom: 280px;
	}

}


@media (min-width: 768px) and (max-width: 1024px) {
  .body-bg {
    background: none !important;
  }
  .left-content{
	  width: 75%;
	  top: -52%;
	  left: -24%;
  }
	section.kidful-prleft {
	  margin-top: 72px;
	  	  margin-bottom: 72px;

  }
  .kidful-footer-logo-box{
	  top: -130px;
  }
  .kidful-family-title {
	  font-size: 1.4rem;
  }
}


/* form */

.kidform-back {
    background-image: url(back.webp);
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.form__field {
  width: 100%;
}
 
.form__input {
  width: 100%;
  padding: 14px 18px;
  background: rgb(255 255 255);
  border: 0px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #4A3A2A;
  text-align: right;
  direction: rtl;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
  font-family: 'baloo';
  margin-bottom: 20px;
}
 .form__field{
	 position: relative;
 }
 .form__field::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50px;
    background: none;
    top: -10px;
    left: -10px;
    border: 1px dashed #ffffff;
    margin-bottom: 10px;
    border-radius: 12px;
}
.form__input::placeholder {
  color: #9AACBA;
  font-size: 0.9rem;
}
 
.form__input:focus {
  border-color: #7ABCD8;
  border-style: solid;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 3px rgba(122, 188, 216, 0.18);
}
 
.form__input.input--error {
  border-color: #E07575;
  border-style: solid;
}
 
.form__error {
  font-size: 0.8rem;
  color: #C0504A;
  text-align: center;
  min-height: 18px;
}
 
/* --- Button --- */
.btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #958b83;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
      font-family: 'baloo';
}
 
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
 
.btn:active {
  transform: translateY(0);
}
 
/* Success card — less top margin since no form */
.card--success {
  margin-top: 60px;
  gap: 18px;
}
 
/* --- Utility --- */
.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(24px) !important;
}
 
 .form {
    width: 100%;
    max-width: 500px;
}