@font-face {
    font-family: DIN;
    src: url(../fonts/din-next-w10-heavy.ttf)
}

@font-face {
    font-family: D-DIN;
    src: url(../fonts/D-DIN.TTF)
}

@font-face {
    font-family: D-DINCONDENSED;
    src: url(../fonts/D-DINCONDENSED.TTF)
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    --color-blue: #2E3191;
    --color-yellow: #FFDE17;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    touch-action: pan-x pan-y;
    height: 100%
}

body {
    -webkit-text-size-adjust: 100%;
}

html {
    font-family: "DIN", sans-serif;
    font-size: 14px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    margin-left: 40px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.contact-info img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.contact-info a {
    text-decoration: none;
    color: var(--color-blue);
}

button a {
    text-decoration: none;
    color: #000;
    padding: 0;
}


.container {
    display: flex;
    flex-direction: row;
}

.image-container {
    flex: 2;
    height: 505px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.image-container img {
    display: none;
}

.form-container {
    background-color: var(--color-blue);
    flex: 1;
    color: white;
    padding: 10px;
    height: 505px;
}

.form-group {
    margin-bottom: 15px;
}

.form-grp {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.form-grp1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}


label {
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .logo {
        margin-left: 0px;
    }

    .contact-info {
        margin-right: 0px;
    }

    .image-container img {
        display: block;
    }
}

@media (max-width: 514px) {
    .form-grp1 {
        flex-direction: column;
        align-items: first baseline;
        gap: 0px;
    }
}

h1,
p {
    padding-bottom: 20px;
}

button {
    background-color: var(--color-yellow);
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    height: 28px !important;
    padding: 0px 10px 0px 10px;
    text-align: center;
    box-sizing: border-box;
    border: 0;
    font-size: 12px;
    user-select: none;
    -webkit-user-select: none;
    transition: background-color 0.3s ease;
    margin: 5px;
    -webkit-appearance: none;
}

button:not(:disabled):hover,
button:not(:disabled):focus {
    outline: 0;
    background: #f4e603;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .2), 0 3px 8px 0 rgba(0, 0, 0, .15);
}

button:disabled {
    filter: saturate(0.2) opacity(0.5);
    -webkit-filter: saturate(0.2) opacity(0.5);
    cursor: not-allowed;
}

.row {
    background-color: var(--color-yellow);
    height: 60px;
}

input[type="checkbox"] {
    -webkit-appearance: none !important;
    border-radius: 0 !important;
}

.checkbox-apple {
    position: relative;
    width: 50px;
    height: 25px;
    margin-left: 20px;
    margin-right: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--color-blue) !important;
}

.checkbox-apple label {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 25px;
    border-radius: 50px;
    background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-apple label:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.checkbox-apple input[type="checkbox"]:checked+label {
    background: linear-gradient(to bottom, #FFDE17, #fcd706);
}

.checkbox-apple input[type="checkbox"]:checked+label:after {
    transform: translateX(25px);
}

.checkbox-apple label:hover {
    background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
}

.checkbox-apple label:hover:after {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.yep {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 25px;
}

.input-style {
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 5px;
    color: #555;
    outline: none;
}

.input-style:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select {
    width: 80%;
    padding: 5px;
    margin: 5px 0 15px 0;
    display: inline-block;
    border: 2px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.ack-container {
    background-color: var(--color-blue);
    color: white;
    padding: 10px;
    width: 100%;
}

.ack-a {
    color: var(--color-yellow);
}

.iti__country-list {
    color: black !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: black !important;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}