.index{
    width: 100%;
    height: 100%;
}

.index__img-figure{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    padding: 18px 25px;
    top: 0;
    left: 0;
}

.index__img{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index__form-container{
    max-width: 515px;
    width: 100%;
    max-height: 340px;
    height: 100%;
    border-radius: 5px;
    background-color: white;
    padding: 20px 35px;
}

@media only screen and (min-width: 1200px){
    .index__form-container{
        margin: 170px auto 0 auto;
    }
}

@media only screen and (min-width: 1600px){
    .index__form-container{
        margin: 300px auto 0 auto;
    }
}

.index__form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.index__form-title{
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

.index__form-input{
    background-color: #E2E2E2;
    border: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;

}

.index__form-button{
    border: none;
    max-width: 150px;
    width: 100%;
    padding: 12px 3px;
    background-color: #FFAA33;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    margin: 15px auto 0 auto;
    display: inline-block;
}