.container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.top-section {
    flex: 0 0 42vh;
    background: url('../img/background.png') no-repeat center center;
    background-size: cover;    
    margin-bottom: -50px;
}

.bottom-section {
    background: #fff;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 0 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.bottom-section ._form {
    max-width: 30%;
    margin: auto;
}

@media (max-width: 1024px) {
    .top-section {
        flex: 0 0 35vh;
    }
    .bottom-section ._form {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .top-section {
        flex: 0 0 32vh;
    }
    .bottom-section ._form {
        max-width: 70%;
    }
}

@media (max-width: 575px) {
    .bottom-section ._form {
        max-width: 90%;
    }
}

.bottom-section ._form ._header picture {
    display: flex;
    justify-content: center;
}

.bottom-section ._form ._header img{
    width: 396px;
}

@media (max-width: 320px) {
    .bottom-section ._form ._header img{
        width: 250px;
    }
}


.bottom-section ._form  ._content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 45px;
    margin-top: 30px;
}

.bottom-section ._form ._content ._field{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.bottom-section ._form ._content ._field picture{
    width: fit-content;
    margin-top: 10px;
}

.bottom-section ._form ._content ._field img{
    width: 50px;
}

.bottom-section ._form ._content ._field ._input {
    position: relative;
    width: 100%;
    display: block;
}

.bottom-section ._form ._content ._field ._input label {
    font-family: 'Montserrat-ExtraBold';
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.bottom-section ._form ._content ._field ._input input {
    width: 100%;
    border-bottom: 3px solid var(--secondary);
    padding: 12px 0px;
    margin-top: 5px;
}

/* Selecciona el campo input y el placeholder */
.bottom-section ._form ._content ._field ._input input::placeholder {
  font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat-Light';
    color: #888;
}

/* Para navegadores antiguos */
.bottom-section ._form ._content ._field ._input input::-webkit-input-placeholder { /* Chrome, Edge, Safari */
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat-Light';
    color: #888;
}
.bottom-section ._form ._content ._field ._input input:-moz-placeholder { /* Firefox 18- */
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat-Light';
    color: #888;
}
.bottom-section ._form ._content ._field ._input input::-moz-placeholder { /* Firefox 19+ */
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat-Light';
    color: #888;
}
.bottom-section ._form ._content ._field ._input input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat-Light';
    color: #888;
}

.bottom-section ._form ._content ._button{
    width: 100%;
    display: flex;
    justify-content: center;
}