@font-face {
    font-family: 'Mazi';
    src: url('/../fonts/Mazi/Mazi-Light.eot');
    src: url('/../fonts/Mazi/Mazi-Light.eot?#iefix') format('embedded-opentype'), url('/../fonts/Mazi/Mazi-Light.woff2') format('woff2'), url('/../fonts/Mazi/Mazi-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

@font-face {
    font-family: 'Mazi';
    src: url('/../fonts/Mazi/Mazi.eot');
    src: url('/../fonts/Mazi/Mazi.eot?#iefix') format('embedded-opentype'), url('/../fonts/Mazi/Mazi.woff2') format('woff2'), url('/../fonts/Mazi/Mazi.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazi';
    src: url('/../fonts/Mazi/Mazi-Bold.eot');
    src: url('/../fonts/Mazi/Mazi-Bold.eot?#iefix') format('embedded-opentype'), url('/../fonts/Mazi/Mazi-Bold.woff2') format('woff2'), url('/../fonts/Mazi/Mazi-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mazi';
    font-weight: 400;
}

.bg-poll-deth {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.top-red-component {
    position: sticky;
    top: 0;
    width: 100%;
    height: 48px;
    background-color: #F51D30;
}

.main-deth-content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    max-width: 1440px;
    padding-inline: 64px;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .main-deth-content {
        flex-direction: column;
        padding-inline: 16px;
    }
}

.main-deth-content__inner {
    display: flex;
    flex-direction: column;
    gap:24px;
}

.main-deth-content__inner__title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color:white;
}

.internalpage_form {
    background: rgba(32, 32, 32, 0.60);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 620px;
    width: 100%;
    border-radius: 24px;
}

.internalpage_form input:not([type=checkbox]) {
    padding: 20px;
    width: 100%;
}

.internalpage_form .error-message{
    display: none;
    margin-top: 4px;
    color: #F51D30;
}

.internalpage_form .error+.error-message {
    display: block;
}

.error-message.error-label {
    display: block;
}

.image-container img {
    max-width: 600px;
    width: 100%;
}

.checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:8px;
    a {
        color: white;
        text-decoration: underline;
    }
}

.checkbox-wrapper-inner {
    color: white;
    display: flex;
    gap: 8px;
}

.internal-submit-btn {
    background: #15A9EC;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border: 0;
    outline: none;
    border-radius: 8px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

/* When the checkbox is checked, change the background */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #15A9EC;
    border-color: #15A9EC;
}

/* Create the checkmark/indicator (hidden by default) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 5px;
    top: 0;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.success {
    color: #15A9EC;
    font-size: 24px;
}

.terms-text p{
    color:white;
    text-transform: uppercase;
    font-weight: 300;
}

.terms-text a {
    color:white;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 300;
}