.default-captcha-container {
    border: 1px solid #c8d3e0;
    padding: 0;
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
    height: 54px;
    width: 100%;
    max-width: 600px;
    margin: 10px 0;
    background: #f5f7fc;
    box-shadow: 0 1px 4px rgba(15,40,90,.08);
}

@media (min-width: 1200px) {
    .default-captcha-container {
        max-width: 500px;
    }
}

.default-captcha-container input {
    height: 54px;
    width: 100%;
    border-radius: 0;
    outline: 0;
    border: 0;
    padding: .5rem 1rem;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #0f2859;
    background: transparent;
}

.default-captcha-container input::placeholder {
    font-weight: 400;
    letter-spacing: 0;
    color: #8898a9;
    font-size: 14px;
}

.default-captcha-container .captcha-image-container {
    position: absolute;
    top: 4px;
    inset-inline-end: 4px;
    height: 46px;
    background: #f5f7fc;
    display: flex;
    align-items: center;
    border-radius: .375rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #dce6f0;
}

.default-captcha-container .captcha-image-container img {
    min-width: 130px;
    height: 46px;
    object-fit: contain;
    border-inline-end: 1px solid #c8d3e033;
}

.default-captcha-container .captcha-image-container .refresh-icon {
    min-width: 38px;
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(0deg);
    transition: .3s ease-in-out transform;
    color: #0f2859;
    opacity: .7;
}

.default-captcha-container .captcha-image-container .refresh-icon:hover {
    opacity: 1;
}

.default-captcha-container .captcha-image-container .refresh-icon.rotate-active {
    transform: rotate(360deg);
}

.dynamic-default-and-recaptcha-section {
    display: block;
    max-height: 0;
    margin: .5rem 0;
    overflow: hidden;
    transition: max-height .75s ease-in-out;
}

.dynamic-default-and-recaptcha-section.active {
    max-height: 70px;
}
