.title {
    font-size: 3rem;
    margin-top: 7rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

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

.form .input {
    background: white;
    border: none;
    padding: 15px 20px;
    /* Adjusted padding for uniformity */
    border-radius: 20px;
    margin: 10px 0;
    /* Adjusted margin for consistent spacing */
    box-shadow: var(--clr4) 0px 10px 10px -5px;
    width: 30rem;
}

.form .input::placeholder {
    font-family: "Rubik", sans-serif;
    color: #999;
}

.form .input:focus {
    outline: none;
    font-family: "Rubik", sans-serif;

}

.form-status {
    font-family: "Rubik", sans-serif;
    font-size: 0.95rem;
    margin-top: 8px;
    min-height: 1.2em;
    text-align: center;
}

.form-status--success {
    color: #2a7a2a;
}

.form-status--error {
    color: #c0392b;
}

.form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.form button {
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    padding: 15px 0;
    /* Adjusted padding for uniformity */
    width: 100%;
    background: white;
    color: #333;
    margin: 10px 0;
    /* Adjusted margin for consistent spacing */
    border-radius: 20px;
    border: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.form_wrapper {
    display: flex;
    flex-direction: row;
    border-radius: 40px;
    box-shadow: 0px 0px 20px var(--clr5);
    padding: 25px 40px;
    margin: 0;
    background: var(--clr5);
    opacity: 1;
    z-index: 1;
    gap: 2rem;
}

.bigtext {
    height: 15rem;
    resize: none;
    background: white;
    font-family: "Rubik", sans-serif;
    border: none;
    padding: 15px 20px;
    /* Adjusted padding for uniformity */
    border-radius: 20px;
    margin: 10px 0;
    /* Adjusted margin for consistent spacing */
    box-shadow: var(--clr4) 0px 10px 10px -5px;
    width: 30rem;
}

.bigtext::placeholder {
    font-family: "Rubik", sans-serif;
    color: #999;

}

.form button:hover {
    transform: scale(1.05);
    background-color: #333;
    color: white;
}

.envelope {
    height: 25rem;
}

@media (max-width: 480px) {
    .form_wrapper {
        width: 21rem;
        margin: 0;
    }

    .bigtext,
    .form .input,
    .form {
        width: 100%;
    }

    .envelope {
        display: none;
    }


}

@media (max-width: 450px) {
    .form_wrapper {
        width: 16rem;
        margin: 0;
        height: min-content;
    }


}

@media (max-width: 400px) {
    .form_wrapper {
        width: 16rem;
        margin: 0;
        height: min-content;
    }
}

@media (max-width: 350px) {
    .form_wrapper {
        width: 14rem;
        margin: 0;
        height: min-content;
    }
}

@media (max-width: 320px) {
    .form_wrapper {
        width: 12rem;
        height: min-content;
        margin: 0;
    }
}