body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #DCEFDA;
    font-family: Roboto, sans-serif;
    /* Google Forms default font */
}

/* For headings and other elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, sans-serif;
    font-size: 24;
    /* Google Forms default font for headings */
}

/* Your existing CSS rules continue here */

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main {
    width: 50vw;
    box-sizing: border-box;
    background-color: white;
    border-top: 12px solid #148019;
    border-radius: 10px;
    margin: 13px;
    margin-bottom: 0;
    padding: 10px;
    padding-left: 30px;
    font-size: 13px;
}

 p {
    font-size: 12px;
}

.name,
.email {
    background-color: white;
    box-sizing: border-box;
    height: auto;
    width: 50vw;
    margin: 13px;
    padding: 10px;
    padding-left: 30px;
    margin-bottom: 0;
    border-radius: 10px;
}

input[type="text"],
input[type="email"],
select {
    border: none;
    border-bottom: 1px solid rgb(66, 64, 64);
    width: 90%;
    padding: 5px;
    outline: none;
    margin-bottom: 8px;
    /* Remove the default focus outline */
}

/* Border styling when the input is focused */
input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    border-bottom: 1px solid rgb(58, 145, 91);
}

button {
    margin: 13px;
    margin-left: 0;
    margin-bottom: 0;
    padding: 8px 19px;
    border-radius: 3px;
    background-color: #20884f;
    border: none;
    color: white;
    text-align: center;
}

button:hover {
    background-color: #0d4727;
    transition: ease-in 200ms;
}

.rule {
    width: 50vw;
    margin-top: 15px;
    font-size: 13px;
    color: grey;
}

.policy {
    font-size: 14px;
    color: grey;
}

.policy a {
    text-decoration: none;
    color: grey;
    text-decoration: underline;
}

img {
    margin-top: 13px;
    
    object-position: center;
    border-radius: 10px;
}

.Google {
    text-align: center;
}
.mb-4{
    margin-bottom: 20px;
}

@media only screen and (max-width: 1000px) {

    img,
    .main,
    .name,
    .email,
    .submit,
    .rule,
    .policy,
    .Google {
        width: 90vw;
    }

    img {
        max-height: 125px;
    }

    .main {
        height: auto;
        font-size: 12px;
    }

    .name,
    .email {
        height: auto;
        font-size: 12px;
    }

    .main h1 {
        font-size: 18px;
    }

    .main p,
    h4 {
        margin: 10px 0px;
    }

    h1 {
        font-size: 25px;
    }

    input[type="text"],
    [type="email"],
    select {
        padding: 5;
    }

    button {
        padding: 10px 22px;
        border-radius: 5px;
    }
}