/* 🔒 SCOPED */
.astro-form-section{
    padding:80px 20px;
    background:linear-gradient(135deg,#fff,#f3e9dc);
    font-family:'Poppins',sans-serif;
}

.astro-form-container{
    max-width:600px;
    margin:auto;
    text-align:center;
}

.astro-form-container h2{
    font-size:36px;
    margin-bottom:10px;
}

.astro-form-container p{
    color:#666;
    margin-bottom:30px;
}

/* form */
.astro-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* inputs */
.astro-form input,
.astro-form select,
.astro-form textarea{
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:15px;
    outline:none;
}

/* focus */
.astro-form input:focus,
.astro-form textarea:focus{
    border-color:#ff8c00;
}

/* button */
.astro-form button{
    background:linear-gradient(45deg,#ff8c00,#ffd700);
    color:#fff;
    padding:16px;
    border:none;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.astro-form button:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(255,140,0,0.3);
}

/* success message */
.astro-success{
    display:none;
    margin-top:20px;
    padding:15px;
    background:#e6ffed;
    color:#2e7d32;
    border-radius:10px;
    font-weight:500;
}