/* importing google font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Roboto Condensed", sans-serif;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    padding-top: 2%;
}

/* Container for the main content */
.container {
    width: 80%;
    margin: 50px auto;
}

/* Styling for main heading */
.container h1 {
    color: #080808;
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Styling for paragraph text */
.container p {
    color: #080808;
    text-align: center;
    font-size: 25px;
    margin-bottom: 40px;
}

/* Styling for contact box container */
.contact-box {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    display: flex;
    border-radius: 20px;
}

/* Styling for left container inside the contact box */
.container-left {
    flex-basis: 60%;
    padding: 40px 60px;
}

/* Styling for right container inside the contact box */
.container-right {
    flex-basis: 40%;
    padding: 40px 60px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #080808;
    border-radius: 0px 20px 20px 0px;
}

/* Styling for heading inside left container */
.container-left h3 {
    font-size: 25px;
    color: #353535;
    margin-bottom: 20px;
}

/* Styling for heading inside right container */
.container-right h3 {
    font-size: 25px;
    color: #080808;
    margin-bottom: 20px;
}

/* Styling for input rows */
.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Styling for input groups inside input rows */
.input-row .input-group {
    flex-basis: 45%;
}

/* Styling for input fields */
input {
    width: 95%;
    border: none;
    color: #353535;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-family: "Roboto Condensed", sans-serif;
}

/* Styling for textareas */
textarea {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
}

/* Styling for labels */
label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    color: #353535;
}

/* Styling for buttons */
.button {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: #fefefe;
    border: none;
    outline: none;
    color: #080808;
    width: 20%;
    height: 40px;
    border-radius: 25px;
    margin-top: 20px;
    transition: all 0.5s ease 0s;
    box-shadow: 0px 5px 10px 0px #0000003a;
}

/* Hover styling for buttons */
.button:hover {
    color: #fff;
    background: #080808;
    box-shadow: #0f176f;
}

/* Styling for table cells */
tr td:first-child {
    font-size: 20px;
    font-weight: 600;
    padding-right: 20px;
}

tr td {
    padding-top: 20px;
}

/* styling for error messages  */
.error-message {
    font-size: 12px;
    color: red;
    display: none;
    margin-bottom: 15px;
}

/* Styling for iframes */
iframe {
    width: 100%;
    border: none;
    border-radius: 10px;
    outline: none;
    margin-top: 30px;
}
/* CSS for smaller screens (mobile) */
@media only screen and (max-width: 768px) {
    body {
        padding-top: 10%;
    }

    .container {
        width: 90%;
    }

    .container h1 {
        font-size: 40px;
    }

    .container p {
        font-size: 18px;
    }

    .container-left,
    .container-right {
        padding: 20px;
    }

    .input-row {
        flex-direction: column;
    }

    .input-row .input-group {
        flex-basis: 100%;
        margin-bottom: 15px;
    }

    input,
    textarea {
        padding: 8px;
    }

    .button {
        width: 60%;
    }

    tr td:first-child {
        font-size: 15px;
        font-weight: 600;
        padding-right: 10px;
    }
}