.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-image: url('/img/index-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: auto;
    box-sizing: border-box;
    min-height: 100vh; 
}

.main-header:hover .logo {
    background-image: url("/img/logo-2.png");
}

.form-section, .contact-info-section {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 30px;
    box-sizing: border-box;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section h2, .contact-info-section h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.form-section form div {
    margin-bottom: 15px;
}

.form-section form label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-section form .required {
    color: red;
    margin-left: 5px;
    display: inline;
}

.form-section form input, .form-section form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-section form textarea {
    resize: none;
}

.form-section form button {
    background-color: var(--donate-btn);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    font-weight: 600;
}

.form-section form button:hover {
    background-color: var(--donate-btn-hover);
}

.contact-info-section p {
    margin-top: 10px;
    line-height: 1.6;
}

.contact-info-section .indent {
    line-height: 1.4;
}

.contact-info-section i {
    margin-right: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

#contact_whatsapp{
    width: auto;
}

.whatsapp-label{
    margin-bottom: 0px !important;
}


@media (max-width: 768px) {

    .form-section{
        margin-top: 100px;
    }
    
}  