*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimg.freepik.com%2Fpremium-photo%2Fcracked-earth-wallpapers-and-images-for-your-desktop-phone-or-tablet_808092-407.jpg&f=1&nofb=1&ipt=eb508b3cfe9039cb8641c89577cd6ee78aa107aa1e41dd6cb4f2ee13e6406a49") no-repeat center;
    background-size: cover;
}

.container{
    max-width: 50rem;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.container--flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__form{
    width: 45rem;
    /* display: flex; */
    /* gap: 1rem;
    justify-content: space-between; */
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 1rem;
    /* flex-wrap: wrap; */
}

.hero__form-left{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__form-right{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__form-row{
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.form__button{
    align-self: center;
    padding: 0.2rem 0.4rem;
    cursor: pointer;
    font-size: 2rem;
}

.hero__form-description{
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
}

.little-text{
    font-size: 1rem;
}

.label{
    font-size: 2.5rem;
}

.input{
    font-size: 2rem;
    min-height: 2.25rem;
    width: 50%;
    border-radius: 1rem;
    border: none;
    padding-left: 0.5rem;
}

.flex{
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}