body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.form-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    padding: 5rem 0;
    padding-left: 7rem;
    box-shadow: 0 0 10px gray;
    border-radius: 2rem;
    gap: 4rem;
    width: 1050px;
    height: 550px;
}

.form-container input {
    background-color: rgb(226, 226, 226);
    padding: .5rem 2rem .5rem 4.5rem;
    margin-bottom: 1rem;
    border-radius: 2rem;
    width: 80%;
}

.form-container input:first-child {
    background-image: url('/assets/img/user-solid.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 5% 50%;
}

.form-container input:first-child[data-have] {
    background-image: none;
}

.form-container input:nth-of-type(2) {
    background-image: url('/assets/img/envelope-solid.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 5% 50%;
}

.form-container input:nth-of-type(2)[data-have] {
    background-image: none;
}

.form-container input:last-child {
    color: white;
}

.form-container textarea {
    background-color: rgb(226, 226, 226);
    border-radius: 2rem;
    border: 0;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.form-container textarea::placeholder {
    font-family: "Kdam Thmor Pro";
    font-size: 1.5rem;
}