* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    width: 100vw;
    height: 100vh;
}

.form-controller {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
    width: 100%;
    height: 100%;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background-color: white;
    margin: auto;
    width: 50%;
    height: 40%;
}

.form-item {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: fit-content;
    padding: 9px;
}

.text-box {
    background-color: #e9e9e9;
    padding: 18px;
    outline: none;
}

label {
    text-transform: uppercase;
}