section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.email_sent {
    background: #fff;
    position: fixed;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    width: 80%;
    padding: 40px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    box-shadow: 0 0 30px #ccc;
}

.email_sent p {
    font-size: 16px;
    color: var(--primary-text-color);
}

.email_sent a {
    background: var(--active1);
    width: 100px;
    text-align: center;
    padding: 6px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 10px;
    transition: .2s ease;
}

.email_sent a:hover {
    background: var(--hover);
}

section form {
    width: 90%;
    display: inherit;
    flex-direction: column;
    gap: 10px;
}

section form input, section form button {
    padding: 8px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
}

section form input {
    outline: none;
    border: 1px solid #ccc;
}

section form button {
    background: var(--active1);
    color: #fff;
    text-transform: capitalize;
    cursor: pointer;
    transition: .2s ease;
}

section form button:hover {
    background: var(--hover);
}


@media (min-width: 680px) and (max-width: 1199px) {
    .email_sent { 
        width: 50%;
    }

    .email_sent p {
        font-size: 18px;
    }

    section form {
        width: 60%;
    }
}

@media (min-width: 1200px) {
     section form {
        width: 40%;
    }

    .email_sent p {
        font-size: 20px;
    }

    .email_sent { 
        width: 40%;
    }
}

