/* Basic styling for the form */

/* Center align the CTA title */
.cta-title {
    text-align: center;
    color: #000;

    font-family: Outfit;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
p{
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    padding-top: 5px;
}
.required {
    color: red;
}


#contact-form {
    max-width: 600px;
    margin: 10px auto;
    padding: 20px;
    padding-top: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styling for form labels */
#contact-form label {
    color: #000;

    /* Header-Navbar */
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Styling for the input and textarea fields */
#contact-form input[type="text"],
#contact-form input[type="tel"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 25px;
    background-color: #bcdafa;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

/* Responsive button styling */
#contact-form button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    font-family: Outfit;
    background-color: #5a7ecf;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the button */
#contact-form button[type="submit"]:hover {
    background-color: #2654c0;
}

/* Responsive design for smaller screens */
@media (max-width: 769px) {
    .cta-title{
        padding-top: 10px;
    }
    .cta-title{
        font-size: 20px;
    }
    p{
        text-align: center;
        font-family: Outfit;
        font-size: 12px;
        font-style: normal;
        line-height: normal;
    }
    #contact-form {
        padding: 15px;
    }

    #contact-form label {
        font-size: 14px;
    }

    #contact-form input[type="text"],
    #contact-form input[type="tel"],
    #contact-form input[type="email"],
    #contact-form textarea {
        font-size: 14px;
        padding: 8px 12px;
    }

    #contact-form button[type="submit"] {
        font-size: 16px;
    }
}
