.wbk_smtpTestField {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbk_smtpTestField__label {
    color: #212121;
    font-family: typography.$font-primary;
    font-size: 14px;
    font-weight: 500;
}

.wbk_smtpTestField__row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.wbk_smtpTestField__input {
    flex: 1 1 220px;
    min-width: 220px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d5dcdc;
    border-radius: 8px;
    font-family: typography.$font-primary;
    font-size: 14px;

    &:focus {
        border-color: #1f6763;
        outline: none;
    }

    &:disabled {
        background: #f5f7f7;
        cursor: not-allowed;
    }
}

.wbk_smtpTestField__button {
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: #1f6763;
    color: #fff;
    font-family: typography.$font-primary;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;

    &:hover:not(:disabled) {
        background: #155350;
    }

    &:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }
}

.wbk_smtpTestField__status {
    margin: 0;
    font-family: typography.$font-primary;
    font-size: 13px;
    line-height: 1.4;
}

.wbk_smtpTestField__status--success {
    color: #1f6763;
}

.wbk_smtpTestField__status--error {
    color: #c0392b;
}
