/**
 * Main container
 */

.smtp-tester-container {
    border: 1px solid #e6e7eb;
    padding-top: 1.5rem;
    width: 100%;
    border-radius: 0.5rem;
}

/**
 * Radio buttons
 */

.radio-btn-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    gap: 0.5rem;

    border-bottom: 1px solid #e6e7eb;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

@media screen and (min-width: 576px) {
    .radio-btn-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .radio-btn-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.radio-btn input {
    display: none;
}

.radio-btn input:checked+.radio-btn-content {
    border: 0.09375rem solid #1a53ff;
}

.radio-btn-content {
    height: 3.125rem;
    border: 0.0625rem solid #e6e7eb;
    display: flex;
    border-radius: 0.5rem;
    box-shadow: 0 0 0.625rem #c3c3c367;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease-out;
}

.radio-btn-content>img {
    height: 32px;
}

.other-provider-text {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

/**
 * Form
 */

.form-title {
    font-size: 1rem;
    font-weight: 400;
    color: #6d757d;
}

.form-line {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.port-input-container {
    width: 33%;
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 0.875rem;
    color: #a6a6a6;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.invalid-message {
    font-size: 0.875rem;
}

.advanced-options-btn {
    color: #1a53ff;
    cursor: pointer;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    user-select: none;
    max-width: max-content;
}

/**
 * State
 */

.state-container {
    background-color: #f5f7f9;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.state-content {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1.5rem 3rem;
}

.state-content>img {
    width: 3.5625rem;
    height: 3.5625rem;
}

.technical-logs-container {
    height: auto;
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.375rem 0.75rem;
    color: #495057;
    border: 1px solid #ced4da;
}

.technical-logs-btn {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.technical-logs-btn img {
    filter: brightness(0%);
    width: 0.75rem;
}

.technical-logs-content {
    background-color: #212529;
    color: #d9d9d9;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin: 0.5rem 0 0.3rem 0;
    padding: 0.5rem;
}

/**
 * Other
 */

.tooltip-inner {
    max-width: 300px;
}

.chevron-icon {
    transition: transform 0.3s ease-out;
}

.chevron-icon.direction-asc {
    transform: scaleY(-1);
}

.input-learn-more-link {
    text-decoration: underline;
}

.input-learn-more-link:hover {
    text-decoration: underline;
}

.message-learn-more-link:hover {
    text-decoration: underline;
    color: #1a4be6;
}