.body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    margin-top: 200px;
}

h1 {
    text-align: center;
    font-size: clamp(30px, 4vw, 50px);
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.input_fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: clamp(350px, 30vw, 500px);
    padding: 10px;
}

.input {
    width: 70%;
    padding: 12px;
    margin: 0 10px 0 0;
    border-radius: 5px;
    border: solid 1px;
}

.confirm {
    width: auto;
    padding: 12px 20px;
    margin: 0;
    border-radius: 5px;
    border: solid 1px;
    text-align: center;
}