@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Staatliches&family=Varela+Round&display=swap');

body {
    background-color: #FFA3A5;
    font-family: 'Varela Round', sans-serif;
    margin: 30px;
    padding: 100px;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-user-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}

.user-info-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form {
    padding: 130px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

label {
    width: 40%;
    font-size: 18px;
    color: white;
}

input {
    width: 60%;
    height: 10px;
    font-size: 16px;
    border-radius: 20px;
    border: none;
    padding: 20px;
}

input:focus {
    outline: #dd2d4a solid;
}

.select-style {
    width: 60%;
    font-size: 16px;
    border-radius: 20px;
    border: none;
    padding: 20px;
}

select:focus {
    outline: #dd2d4a solid;
}

.input-section {
    width: 80%;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    height: 20px;
    font-family: 'Staatliches', cursive; 
    font-size: 80px;
    color: white;
}

button {
    width: 50%;
    margin: 40px;
    padding: 15px;
    color: white;
    border-style: none;
    border-radius:35px;
    background-color: #dd2d4a;
    font-size: 20px;
}

button:hover {
    background-color: #ff4d6d;
}

a {
    text-decoration: none; 
    color: white;
}