body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
}
.container {
    width: 100%;
    max-width: 800px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 auto;
    padding: 16px;
}
.image {
    display: flex;
    justify-content: center;
}
.image img {
    width: 184px;
    height: 128px;
    object-fit: contain;
    object-position: center;
}
.banner {
    display: flex;
    justify-content: center;
}
.banner img {
    width: 100%;
    height: 275px;
    object-fit: contain;
    object-position: center;
}
.message {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.message h1,
.message p {
    margin: 0;
    padding: 0 16px;
    text-align: center;
    color: #1B1B1B;
}
.consents {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.consent {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid #E0E0E0;
}
.consent:last-child {
    border-bottom: unset;
}
.consent h6,
.consent p {
    margin: 0;
    padding: 0 16px;
    text-align: center;
}
.consent h6 {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    color: #1B1B1B;
}
.consent p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #4F4F4F;
}
.switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}
.negative, .positive {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}
.switch-container .negative {
    color: #BDBDBD;
}
.switch-container .positive {
    color: #00C6A2;
}
.switch {
    position: relative;
    display: inline-block;
    width: 27px;
    height: 17px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E0E0E0;
    border: 1px solid #E0E0E0;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 1px;
    bottom: 1px;
    background-color: #FFFFFF;
    -webkit-transition: .3s;
    transition: .3s;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .25);
}

.switch input:checked + .slider {
    background: #00C6A2;
    border: 1px solid #00C6A2;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.button {
    width: 192px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    background: #00C6A2;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
}
.button:hover {
    background: #00DCBD;
}
.button:active {
    background: #05AC8E;
}
.response-message {
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0;
}
.response-message p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;

}
.response-message p.success {
    color: green;
}
.response-message p.fail {
    color: indianred;
}
