body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", Sans-serif;
}

.form-wrapper{
    max-width: 1050px;
    box-sizing: border-box;
    padding: 100px;
    background-color: #36AEE2;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    border-radius: 59px;
    margin: auto;
}

@media (width < 1024px) {
    .form-wrapper{
        padding: 50px;
    }
}

@media (width < 768px) {
    .form-wrapper{
        padding: 30px 15px;
    }
}

.form-header{
    color: white;
    text-align: center;
}

.form-header h2{
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2em;
    margin-top: 0px;
}

@media (width < 1024px) {
    .form-header h2{
        font-size: 23px;
    }
}

.form-header p{
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 0px;
    color: #FFFFFFD4;
}

.form{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    font-weight: 400;
}

label{
    font-size: 17px;
    line-height: 1.5em;
    padding-bottom: 5px;
    color: white;
}

input, textarea, select{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px;
    color: #636363;
    background-color: #ffffff;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF45;
    border-radius: 5px 5px 5px 5px;
    padding: 12px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

textarea{
    transition: none;
    min-width: 100%;
    min-height: 100px;
}

input:disabled{
    /* background-color: #bdbdbd;
    border-color: #6d6d6d45; */
}

input::placeholder, textarea::placeholder {
  opacity: 0.7;
}

input:focus, textarea:focus, select:focus{
    outline: none;
    color: #636363;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    border-style: solid;
    border-color: #D34609;
}

button{
    margin-top: 10px;
    background-color: #F5743C;
    color: white;
    min-height: 47px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #D34609;
    border-radius: 30px;
    padding: 16px 35px 16px 35px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover{
    cursor: pointer;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.address-field{
    display: flex;
    gap: 10px;
}

.address-item{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.address-item:nth-child(1){
    width: 20%;
}

.address-item:nth-child(2){
    width: 20%;
}

.address-item:nth-child(3){
    width: 30%;
}

.address-item:nth-child(4){
    width: 30%;
}

#addressWrapper{
    width: 60%;
}

@media (width < 768px) {
    .address-field{
        flex-wrap: wrap;
        gap: 0px;
    }

    .address-item:nth-child(1){
        width: calc(50% - 10px);
        padding-right: 10px;
    }

    .address-item:nth-child(2){
        width: 50%;
    }

    .address-item:nth-child(3){
        width: 100%;
    }

    .address-item:nth-child(4){
        width: 100%;
    }

    #addressWrapper{
        width: 100%;
    }
}

.hidden {
  display: none;
}