@import url('https://use.typekit.net/mon5kfe.css');

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

html,
body {
    margin: 0;
    padding: 0;

    min-height: 100vh; /* old browsers */
    min-height: 100dvh; /* new browsers */
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

html,
body,
button,
input,
textarea,
select {
    font-family: 'acumin-pro', Arial, serif;
}

.root {
    background-color: #F2F2F2;
    min-height: 100vh;
    padding: 50px 30%;
}

@media screen and (max-width: 1100px){
    .root{
        padding: 50px 15%;
    }
}

@media screen and (max-width: 550px){
    .root{
        padding: 50px 5%;
    }
}
.formContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

    background-color: white;
    padding: 40px 20px;
    border-radius: 6px;
    min-height: 70vh;
    width: 100%;
}

.title{
    font-size: 24px;
    font-weight: 600;
    color: #2A3185;
    text-align: center;
}

.inputContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 60%;
    min-width: 500px;
}

textarea {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #F2F2F2;

    resize : both;
    min-width: 300px;
    min-height : 100px;
    max-width : 300px;
    max-height : 200px;
}

input[type="text"]{
    width: 300px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #F2F2F2;
}

@media screen and (max-width: 400px){
    input[type="text"]{
        width: 250px;
    }

    textarea{
        min-width: 250px;
        max-width: 250px;
    }
}


button {
    background-color: #2A3185;
    outline: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    transition: transform 300ms ease-in-out;
    width: fit-content;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}

button:hover {
    transform: translateY(-5px);
}

.inputCheckboxContainer{
    display: flex;
    align-items: center;
    gap: 10px;
}