*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

body{
    background-color: #f1f1f1;
}
.container{
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.box{
    display: flex;
    flex-direction: column;
}

form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input{
    width: 500px;
    line-height: 30px;
    border: solid, 1px, #d62000;
    border-radius: 8px;
    padding: 15px;
}
#textInput{
    width: 500px;
    border: solid, 1px, #d62000;
    border-radius: 8px;
    padding: 15px;

}
#fileInput{
    width:500px;
    background-color: #fff;
}

::file-selector-button{
    font-family: "Poppins", sans-serif;
    border: solid, 1px, #d62000;
    border-radius: 8px;
    background-color: #d62000;
    color: #f1f1f1;
    padding: 5px;
    font-size: 18px;
    margin-right: 20px;
}

button{
    border: solid, 1px, #d62000;
    border-radius: 8px;
    background-color: #d62000;
    color: #f1f1f1;
    padding: 5px;
    font-size: 18px;
}

.hidden{
    display: none;
}