﻿.login-tab-switcher {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 1.25rem;
}

.login-tab-btn {
    flex: 1;
    padding: 10px 0;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

    .login-tab-btn.active {
        color: #ea5455;
        border-bottom-color: #ea5455;
        font-weight: 600;
    }

    .login-tab-btn:hover:not(.active) {
        color: #333;
    }

.otp-method-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.method-btn {
    flex: 1;
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #6c757d;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

    .method-btn.active {
        border-color: #ea5455;
        color: #ea5455;
        background: #fff5f5;
        font-weight: 500;
    }

    .method-btn:hover:not(.active) {
        border-color: #aaa;
        color: #333;
    }

.otp-code-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.otp-code-box {
    width: 44px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #333;
}

    .otp-code-box:focus {
        border-color: #ea5455;
        box-shadow: 0 0 0 3px rgba(234,84,85,0.12);
    }

.account-card {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .account-card:hover, .account-card.selected {
        border-color: #ea5455;
        background: #fff5f5;
    }

    .account-card .account-info {
        flex: 1;
        min-width: 0;
    }

    .account-card .account-name {
        font-weight: 600;
        font-size: 14px;
        color: #333;
    }

    .account-card .account-company {
        font-size: 12px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.account-radio {
    accent-color: #ea5455;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.reg-phone-group {
    display: flex;
    gap: 8px;
}

    .reg-phone-group .phone-input-wrap {
        flex: 1;
        position: relative;
    }

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
    margin-top: 4px;
}

.otp-resend {
    font-size: 12px;
    color: #888;
    text-align: right;
    margin-bottom: 0.5rem;
    min-height: 18px;
}

    .otp-resend a {
        color: #ea5455;
        cursor: pointer;
        text-decoration: underline;
    }

.mb-04 {
    margin-bottom: 4px !important;
}
