.email-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 400px;
    z-index: 10000;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.5);
    box-sizing: border-box;
}
.email-cta > .toggle {
    position: relative;
    width: 100%;
    height: 48px;
    background-color: #842f30;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}
.email-cta > .toggle > p {
    font-size: 16px;
    color: white;
    font-weight: 700;
}
.email-cta > .toggle > .status {
    position: absolute;
    top: 4px;
    right: 16px;
    font-size: 32px;
}
.email-cta > form {
    background-color: white;
    box-sizing: border-box;
    padding: 8px 16px;
    display: none;
}
.email-cta > form.open {
    display: block;
}
.email-cta > form > p {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.email-cta > form > input,
.email-cta > form > textarea {
    box-sizing: border-box;
    padding: 4px 8px;
    margin-bottom: 8px;
    width: 100%;
    border: 1px solid #DDD;
    font-size: 12px;
}
.email-cta > form > textarea {
    resize: vertical;
    min-height: 100px;
}

.grecaptcha-badge{
    display: none;
}

.legal-advice {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}
.legal-advice > p {
    color: #666;
    font-size: 10px;
}
.legal-advice > p > a {
    color: #2c3e74;
    text-decoration: underline;
}

.whatsapp-icon {
    bottom: 58px;
}

.send-email {
    padding: 16px 24px;
    border: none;
    background-color: #2e3f46;
    color: white;
    letter-spacing: 0.1em;
    cursor: pointer;
}
.send-email[status="sending"] {
    background-color: #2c3e74;
    color: #EEE;
}
.send-email[status="success"] {
    background-color: #2da737;
    color: #EEE;
}
.send-email[status="error"] {
    background-color: #a72d2d;
    color: #EEE;
}

@media (max-width: 600px) {
    .email-cta {
        left: 0;        
        right: unset;
        bottom: 0;
        width: 100%;
    }
}