.container {
    width: 100%;
    margin: 50px auto;
    border-radius: 25px;
    box-shadow: 0 0 10px #ad88c6(53, 0, 102, 0.301);
    border: 2px solid #ad88c6;
    /* Adicionando a borda */
}

.container h1 {
    text-align: center;
    padding: 3%;
}

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

label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    /* Adicionando negrito */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input [type="Assunto"],
textarea {
    width: 98%;
    padding: 10px 0px;
    margin-bottom: 3%;
    border: 1px solid #ad88c6;
    border-radius: 10px;
    border-radius: 25px;
    /* Adicionando o border-radius */
}

textarea {
    resize: none;
    height: 200px;
}

input[type="submit"] {
    background-color: var(--cor2);
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 25px;
    /* Adicionando margem à direita */
}

input[type="reset"] {
    background-color: var(--cor2);
    /* Cor vermelha para o botão de limpar */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: var(--cor3);
}

input[type="submit"]:focus {
    outline: none;
}

input[type="text"] {
    width: 98%;
    /* Define a largura da caixa de texto como 300 pixels */
}

@media (max-width:400px) {
    .container {
        padding: 0;
        width: 98%;
    }
}

.button {
    padding-bottom: 3%;
}