
input,
textarea{

    width: 100%;
    border-radius: 12px;
    border: 1px solid #d8b3c5;
    padding: 12px 15px;
    font-size: 15px;
    transition: 0.3s;
}

/* Input Height */

input
{
    height: 40px;
}

/* Textarea */

textarea{
    min-height: 50px;
}

/* Focus */

input:focus,
textarea:focus{
    border-color: #932F67;
    box-shadow: 0 0 0 0.20rem rgba(147,47,103,0.20);
    outline: none;
}


body{
    background: #f8f1f5;
    font-family: Arial, sans-serif;
}

/* Main Container */

.survey-container{
    max-width: 1000px;
    margin: 40px auto;
}

/* Card Design */

.survey-card{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(147, 47, 103, 0.15);
    background: #ffffff;
}

/* Header */

.survey-header{
    background: linear-gradient(135deg, #932F67, #B14584);
    color: white;
    padding: 18px;
    font-size: 28px;
    font-weight: 800;
}

.survey-header h2{
    margin: 0;
    font-weight: bold;
    font-size: 30px;
}

.survey-header p{
    margin-top: 5px;
    opacity: 0.9;
}

/* Form Body */

.survey-body{
    padding: 35px;
}

/* Labels */

.form-label{
    font-weight: 600;
    color: #5c2343;
    margin-bottom: 8px;
}

/* Inputs */

.form-control,
.form-select{
    border-radius: 12px;
    height: 48px;
    border: 1px solid #d9b8ca;
    transition: 0.3s;
    box-shadow: none;
}

/* Textarea */

textarea.form-control{
    height: auto;
}

/* Focus Effect */

.form-control:focus,
.form-select:focus{
    border-color: #932F67;
    box-shadow: 0 0 0 0.15rem rgba(147, 47, 103, 0.25);
}

/* Section Title */

.section-title{
    font-size: 22px;
    font-weight: bold;
    color: #932F67;
    margin-bottom: 22px;
    border-bottom: 2px solid #f0d9e5;
    padding-bottom: 10px;
}

/* Submit Button */

.btn-submit{
    background: linear-gradient(135deg, #932F67, #B14584);
    border: none;
    height: 52px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

/* Button Hover */

.btn-submit:hover{
    background: linear-gradient(135deg, #7d2556, #932F67);
    transform: translateY(-1px);
}

/* Alert Box */

.alert{
    border-radius: 12px;
    border: none;
}

/* Success Alert */

.alert-success{
    background: #e8f7ee;
    color: #1f7a45;
}

/* Responsive */

@media(max-width:768px){

    .survey-body{
        padding: 20px;
    }

    .survey-header{
        padding: 20px;
    }

    .survey-header h2{
        font-size: 24px;
    }

}
.donate-btn {
display: block;
width: 100%;
background: linear-gradient(90deg, #932F67, #C94A8B);
color: #fff;
padding: 13px 0;
border-radius: 50px;
font-size: 18px;
font-weight: 600;
text-decoration: none;
transition: 0.3s ease;
box-shadow: 0 4px 18px rgba(147, 47, 103, 0.4);
border: 2px solid transparent;
}

.donate-btn:hover {
background: linear-gradient(90deg, #C94A8B, #932F67);
transform: translateY(-4px);
border-color: #F2C94C; /* Gold outline on hover */
box-shadow: 0 6px 25px rgba(147, 47, 103, 0.55);
}
