.bloomreach-form-section-container {
    display: flex;
    justify-content: center;
    height: 100vh;
    background-color: #f5f5f5;
    padding: 80px;
    min-height: 850px;
}
.bloomreach-form-section {
    max-width: 450px;
    padding: 24px;
    margin: auto;
    color: black;
}
.bloomreach-form-header .logo {
    margin-bottom: 16px;
}
.bloomreach-form-header .title {
    color: black;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    font-style: italic;
}
.bloomreach-form-header .subtitle {
    font-size: 14px;
    font-weight: 400;
    color: black;
}
.bloomreach-form-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bloomreach-subscribe-header-logo {
    width: 90px;
    height: 20px;
    margin-bottom: 16px;
}
#bloomreach-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0 24px;
}
#bloomreach-form input {
    width: 100%;
    padding: 16px 8px;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 14px;
    border: 1px solid black;
    border-top: 0;
    border-right: 0;
    background-color: transparent;
}
#bloomreach-form input,
#bloomreach-form input:hover,
#bloomreach-form input:focus,
#bloomreach-form input:active {
    background-color: transparent !important;
    -webkit-text-fill-color: black !important;
}
#bloomreach-form input:-webkit-autofill,
#bloomreach-form input:-webkit-autofill:hover,
#bloomreach-form input:-webkit-autofill:focus,
#bloomreach-form input:-webkit-autofill:active {
    background-color: transparent !important;
    -webkit-text-fill-color: black !important;
}
.bloomreach-input-container {
    width: 100%;
    position: relative;
}
.bloomreach-input-container .error-icon {
    position: absolute;
    right: 8px;
    bottom: 42px;
    color: #CC0824;
    border: 1px solid #CC0824;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    display: none;
}
#bloomreach-form .phone-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 24px;
    padding: 16px 8px;
    margin-bottom: 24px;
    font-size: 14px;
    border: 1px solid black;
    border-top: 0;
    border-right: 0;
}
#bloomreach-form .phone-container input {
    border: none;
    padding: 0;
    margin: 0;
}
#bloomreach-form select {
    margin: 0;
    padding: 0;
    padding-right: 10px;
    border: none;
    font-size: 14px;
    width: 60px;
    margin-right: 8px;
}
#bloomreach-form input::placeholder {
    color: #BBB;
}
#bloomreach-form .form-button {
    cursor: pointer;
    background-color: black;
    color: white;
    text-transform: uppercase;
    border: none;
}
#bloomreach-form .extra-info {
    font-size: 12px;
}
#bloomreach-form .extra-info a {
    color: black;
    text-decoration: underline;
}

.bloomreach-success-section {
    max-width: 450px;
    padding: 24px;
    margin: auto;
}
.form-success-button {
    background-color: black;
    color: white;
    width: 100%;
    padding: 12px 16px;
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
}
.waiting-response-spinner {
    display: none;
    justify-content: center;
    align-items: center;
}
.waiting-response-background {
    height: 2px;
    width: 148px;
    background-color: #bbbbbb;
    position: relative;
    overflow: hidden;
}
.waiting-response-bar {
    height: 2px;
    width: 0px;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    animation: waiting-response 2s linear infinite;
}
@keyframes waiting-response {
    0% {
        width: 0px;
    }
    100% {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .bloomreach-form-section {
        padding: 24px 16px;
        font-size: 28px;
    }
    .bloomreach-form-header {
        margin-bottom: 24px;
    }
    .bloomreach-subscribe-header-logo {
        display: none;
    }
    .bloomreach-form-header .title {
        font-size: 28px;
    }
}