@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap');
* {
    font-family: 'Roboto Mono', monospace;

}

html {
    background-color: #6846b8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

input, select, textarea {
    width: 100%;
    margin: 10px 0 2rem 0;
    padding: 5px;
}

button {
    width: 90%;
    height: 50px;
    border: none;
    background-color: #6846b8;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}

.form-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 5px 10px #000;
}

.form-container h1 { 
    width: 100%; 
    text-align: center;
    margin-bottom: 2rem;
    font-size: 40px;
    color: #6846b8;
}

.form-container .field-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    width: 30vw;
    height: 100%;
}