.subscribe-form__row {
    display: flex;
    gap: 20px;
}

.subscribe-form__field {
    margin-bottom: 20px;
    width: 100%;
}

.subscribe-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-form__checkboxes p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.subscribe-form__checkbox {
    display: flex;
    align-items: center;
}

.subscribe-form__field input:not([type="checkbox"]):not([type="hidden"]) {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    outline: none;
    width: 100%;
    border-radius: 0;
}

.subscribe-form__field .not-valid-tip {
    color: #D92D20;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 150%;
    padding-top: 6px;
    display: none;
}

.subscribe-form__field input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form__field input[type="checkbox"] {
    display: none;
}

.subscribe-form__field label.checkbox {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    display: inline-flex;
    align-items: flex-start;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.subscribe-form__field label.checkbox::before {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    margin-top: 2px;
    flex-shrink: 0;
}

.subscribe-form__field input[type="checkbox"]:checked + label.checkbox::before {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath fill='none' stroke='%230d0d0d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 4l2.5 2.5L9 1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
}

.subscribe-form__field label.checkbox a {
    color: inherit;
    text-decoration: underline;
}

.subscribe-form__field label.checkbox a:hover {
    text-decoration: none;
}

.subscribe-form button.submit.loading {
    pointer-events: none;
    position: relative;
}

.subscribe-form button.submit.loading .label {
    opacity: 0;
}

.subscribe-form button.submit.loading .loader {
    display: inline-block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    animation: subscribe-loader 1.6s ease-in-out infinite;
    animation-delay: 0.53s;
    left: 50%;
    margin-left: -3px;
    top: 50%;
    margin-top: -3px;
}

.subscribe-form button.submit.loading .loader::before,
.subscribe-form button.submit.loading .loader::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    animation: subscribe-loader 1.6s ease-in-out infinite;
}

.subscribe-form button.submit.loading .loader::before {
    left: -11px;
    animation-delay: 0s;
}

.subscribe-form button.submit.loading .loader::after {
    right: -11px;
    animation-delay: 1.07s;
}

@keyframes subscribe-loader {
    0%   { opacity: 0.2; }
    20%  { opacity: 0.6; }
    50%  { opacity: 1;   }
    80%  { opacity: 0.6; }
    100% { opacity: 0.2; }
}

.subscribe-form__response {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .subscribe-form__row {
        flex-direction: column;
        gap: 0;
    }
}
