body {
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    background-color: transparent;
    color: white;
}

.content {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    /*padding-left: 30px;*/
    padding-right: 30px;

}

.left,
.right {
    flex: 1;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.left {
    background-image: url("../images/1.png");
    border-right: 10px solid #124d99;
    box-shadow: 0px 0px 50px rgba(109, 185, 193, 0.5);
    padding: 40px;
}

.left::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.right {
    background-image: url("/images/2.jpg");
    padding: 40px;
}

.right, .logo {
    width: 100%;
    max-width: 100%;
}
/*.logo{*/
/*  width:7rem;*/
/*}*/

form {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 95%;
}

input,
button {
    margin: 10px 0;
    padding: 10px;
    border: none;
    font-size: 16px;
    border-radius: 2rem;
    font-family: 'Unbounded', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

input:not([type="tel"]) {
    background: #0f4c97c9;
    color: white;
    border: 1.83px solid #fff;
    box-shadow: 0 0 26px rgba(43, 183, 199, 0.42) inset;
    padding: 18px;
}

button {
    background: linear-gradient(267.99deg, #d41e30 15%, #f5f4f5 42% 52%, #104d98 95%);
    color: black;
    cursor: pointer;
    font-weight: bold;
    font-size: 24px;
    padding:15px;
}

button span {
    text-transform: uppercase;
}

h2, h3 {
    z-index: 1;
    position: relative;
    font-size: 24px;
    text-align: center;
    text-shadow: 0px 0px 32px rgba(0, 0, 0, 1);
    margin: 0;
}

p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    width: 95%;
    margin: 20px auto;
    line-height: 1.6;
    text-align: center;
}

::placeholder {
    color: white;
    text-shadow: 0 0 50px rgba(109, 185, 193, 0.5);
    font-size: 16px;
}

.circle {
    width: 35px;
    height: 35px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle::before {
    content: "";
    width: 25px;
    height: 25px;
    background: #104c98;
    border-radius: 50%;
}

.submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: auto;
    gap: 20px;
}

.consultation {
    text-transform: uppercase;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 18px;
}

.iti__country {
    color: black;
}

.iti__selected-flag {
    padding: 0 6px 0 20px;
}

@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        padding-right: 35px;
    }

    .left {
        border-right: none;
        border-bottom: 10px solid #104c98;
        padding: 20px;
        min-height: 100px;
    }

    .right {
        padding: 0px 0px 20px 20px;
    }

    .logo {
        width: 60%;
        margin: -2rem 0;
    }

    h2, h3 {
        font-size: 20px;
    }

    p {
        font-size: 13px;
        line-height: 1.4;
    }

    input {
        font-size: 14px;
        padding: 18px;
    }
    button {
        font-size: 14px;
        padding: 15px;
    }
    ::placeholder {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 16px;
    }

    .circle {
        width: 25px;
        height: 25px;
    }

    .circle::before {
        width: 15px;
        height: 15px;
    }

    .iti--separate-dial-code .iti__selected-dial-code {
        font-size: 14px;
    }
    .intl-tel-input {
        padding:0;
    }
}
   .error {
      border: 2px solid red !important;
    }
.logo-mobile,
.logo-desktop {
  display: none;
}
@media (max-width: 767px) {
  .logo-mobile {
    display: block;
    width: 60%;
    margin: 0 auto; 
  }
}
@media (min-width: 768px) {
  .logo-desktop {
    display: block;
  }
}
