/* Friburgo Blog - Shortcode Newsletter */

.fbn-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.fbn-field {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #006140;
    border-radius: 50px;
    background: transparent;
    padding: 4px 4px 4px 14px;
    box-sizing: border-box;
}

.fbn-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #333;
    padding: 10px 0 !important;
    min-width: 0;
}

.fbn-input::placeholder {
    color: #828282;
}

.fbn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #006140;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
    padding: 0;
}

.fbn-submit:hover {
    background: #004d33;
}

.fbn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fbn-submit svg {
    display: block;
    width: 20px;
    height: 20px;
}

.fbn-message {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 18px;
    margin-top: 8px;
    min-height: 18px;
}

.fbn-message:empty {
    display: none;
}

.fbn-message.fbn-success {
    color: #006140;
}

.fbn-message.fbn-error {
    color: #E87817;
}
