@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
    width: 100%;
    max-width: 1140px;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    color: #343b39;
}

textarea,
input {
    width: 100%;
    min-height: 40px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #343b395e;
    color: black;
    resize: vertical;
    transition: all .3s ease 0s;
    outline: none;
}

input:focus,
textarea:focus {
    border: 1px solid black;
}

button {
    width: 100%;
    border-radius: 10px;
    border: 0;
    height: 40px;
    background-color: #454e4c;
    color: white;
    font-weight: 700;
    transition: all .3s ease 0s;
}

button:hover {
    background-color: #343b39;
}