/**
 * Akademia LTCA - Style formularzy autoryzacji
 * Rejestracja, Logowanie, Reset hasła, Edycja profilu
 * 
 * Prefiks: ltca-auth- (unikanie konfliktów z front.css i index.css)
 */

/* ============================================
   KOLORY - wg projektów
   ============================================ */
:root {
    --ltca-primary: #242a38;
    --ltca-primary-hover: #1a1e28;
    --ltca-text: #242a38;
    --ltca-text-light: #6c757d;
    --ltca-border: #d1d5db;
    --ltca-border-focus: #242a38;
    --ltca-bg-light: #f0f2f5;
    --ltca-bg-password: #e8eaed;
    --ltca-success: #22c55e;
    --ltca-error: #ef4444;
    --ltca-white: #ffffff;
}

body.modal-open #loginModal .modal-dialog .modal-body,
body.modal-open.modal-open #loginModal .modal-dialog .modal-body,
body.modal-open.register-form #loginModal .modal-dialog .modal-body {
    background: #FFFFFF !important;
    padding: 0;
}

/* Autofill - białe tło zamiast żółtego/niebieskiego */
.ltca-auth-input:-webkit-autofill,
.ltca-auth-input:-webkit-autofill:hover,
.ltca-auth-input:-webkit-autofill:focus,
.ltca-auth-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--ltca-white) inset !important;
    -webkit-text-fill-color: var(--ltca-text) !important;
    box-shadow: 0 0 0 1000px var(--ltca-white) inset !important;
    background-color: var(--ltca-white) !important;
    font-size: 14px;
    transition: background-color 5000s ease-in-out 0s;
}
.ltca-auth-input:-internal-autofill-selected
 {
    appearance: menulist-button;
    background-image: none !important;
    background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    color: fieldtext !important;
}

/* ============================================
   RESET - nadpisanie konfliktowych stylów
   ============================================ */
.ltca-auth-form,
.ltca-auth-form * {
    box-sizing: border-box;
}

.ltca-auth-form input,
.ltca-auth-form select,
.ltca-auth-form textarea,
.ltca-auth-form button {
    font-family: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   KONTENER FORMULARZA
   ============================================ */
.ltca-auth-container {
    background: var(--ltca-white);
    padding: 0;
}

.ltca-auth-form {
    font-family: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: var(--ltca-text);
    line-height: 1.5;
}

#login-carousel button.close{
    background-color: #1a1e28;
    color: #FFFFFF;
    opacity: 1;
    height: 35px;
    width: 35px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 20px;
    margin-bottom: -35px;
    z-index: 5;
    position: relative;
}
#login-carousel button.close:hover{
    background-color: #242a38;
    opacity: 0.7;
}

@media (min-width: 769px) {
    .modal-dialog {
        max-width: 700px;
    }
}

/* ============================================
   TYTUŁ FORMULARZA
   ============================================ */
.ltca-auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ltca-text);
    text-align: center;
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 1.3;
    margin-top: 20px;
}

.ltca-auth-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--ltca-text-light);
    text-align: center;
    margin: -15px 0 25px 0;
}

/* ============================================
   GRID LAYOUT
   ============================================ */
.ltca-auth-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.ltca-auth-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.ltca-auth-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .ltca-auth-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   GRUPY FORMULARZA
   ============================================ */
.ltca-auth-field {
    margin-bottom: 20px;
}

.ltca-auth-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ltca-text);
    margin-bottom: 8px;
}

.ltca-auth-label .ltca-auth-required {
    color: var(--ltca-error);
    text-decoration: none;
    margin-left: 2px;
}

/* ============================================
   POLA INPUT
   ============================================ */
.ltca-auth-input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ltca-text);
    background-color: var(--ltca-white);
    border: 1px solid var(--ltca-border);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.ltca-auth-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.ltca-auth-input:focus {
    border-color: var(--ltca-border-focus);
    box-shadow: 0 0 0 3px rgba(36, 42, 56, 0.1);
}

/* Walidacja */
.ltca-auth-input.ltca-valid {
    border-color: var(--ltca-success);
}

.ltca-auth-input.ltca-invalid {
    border-color: var(--ltca-error);
}

/* ============================================
   SELECT
   ============================================ */
.ltca-auth-select {
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 40px 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ltca-text);
    background-color: var(--ltca-white);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23242a38' d='M6 8L1 3h10z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    border: 1px solid var(--ltca-border);
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
    outline: none;
}

.ltca-auth-select:focus {
    border-color: var(--ltca-border-focus);
    box-shadow: 0 0 0 3px rgba(36, 42, 56, 0.1);
}

.ltca-auth-select optgroup {
    font-weight: 600;
    color: var(--ltca-text);
    background: #f9fafb;
    padding: 8px 0;
}

.ltca-auth-select option {
    font-weight: 400;
    color: var(--ltca-text);
    padding: 8px 12px;
}

/* Ukrywanie optgroup dla typu konta */
.ltca-auth-select optgroup:disabled,
.ltca-auth-select optgroup[disabled] {
    display: none !important;
}

.ltca-auth-select option:disabled {
    display: none !important;
}

/* ============================================
   ERROR MESSAGE
   ============================================ */
.ltca-auth-error {
    display: none;
    font-size: 12px;
    color: var(--ltca-error);
    margin-top: 6px;
}

.ltca-auth-input.ltca-invalid + .ltca-auth-error,
.ltca-auth-select.ltca-invalid + .ltca-auth-error,
.ltca-auth-input.ltca-invalid ~ .ltca-auth-error,
.ltca-auth-select.ltca-invalid ~ .ltca-auth-error {
    display: block;
}

/* ============================================
   RADIO BUTTONS - TYP KONTA
   ============================================ */
.ltca-auth-radio-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 8px;
}

.ltca-auth-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ltca-auth-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
    accent-color: var(--ltca-primary);
    cursor: pointer;
}

.ltca-auth-radio  input[type="radio"]:checked::before {
    background-color: #1a1e28;
    content: "\2022";
    text-indent: -9999px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    font-size: 24px;
    width: 10px;
    height: 10px;
    margin: 4px;
    line-height: 16px;

}

.ltca-auth-radio-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--ltca-text);
    cursor: pointer;
}

/* ============================================
   SEKCJA HASŁA
   ============================================ */
.ltca-auth-password-section {
    background: #f7f9fb;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
}

.ltca-auth-password-wrapper {
    position: relative;
}

.ltca-auth-password-wrapper .ltca-auth-input {
    padding-right: 50px;
}

.ltca-auth-toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--ltca-text-light);
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    z-index: 10;
}

.ltca-auth-toggle-password:hover {
    color: var(--ltca-text);
}

/* ============================================
   WSKAŹNIKI SIŁY HASŁA
   ============================================ */
.ltca-auth-password-requirements {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    margin-top: 15px;
    font-size: 12px;
}

.ltca-auth-password-requirements-label {
    font-weight: 500;
    color: var(--ltca-text);
    margin-right: 5px;
    flex-basis: 100%;
    margin-bottom: 5px;
}

.ltca-auth-password-req {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ltca-text-light);
    font-size: 12px;
    white-space: nowrap;
}

.ltca-auth-password-req-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 12px;
    font-weight: 700;
}

/* Stany wskaźników - zgodne z projektem */
.ltca-auth-password-req.ltca-pending {
    color: var(--ltca-text-light);
}

.ltca-auth-password-req.ltca-pending .ltca-auth-password-req-icon {
    color: var(--ltca-text-light);
}

.ltca-auth-password-req.ltca-passed {
    color: var(--ltca-success);
}

.ltca-auth-password-req.ltca-passed .ltca-auth-password-req-icon {
    color: var(--ltca-success);
}

.ltca-auth-password-req.ltca-failed {
    color: var(--ltca-text-light);
}

.ltca-auth-password-req.ltca-failed .ltca-auth-password-req-icon {
    color: var(--ltca-text-light);
}

/* ============================================
   CHECKBOX - REGULAMIN
   ============================================ */
.ltca-auth-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.ltca-auth-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--ltca-primary);
    cursor: pointer;
}

.ltca-auth-checkbox-label {
    font-size: 14px;
    color: var(--ltca-text);
    line-height: 1.5;
    font-weight: normal;
}

.ltca-auth-checkbox-label a {
    color: var(--ltca-primary);
    text-decoration: underline;
}

.ltca-auth-checkbox-label a:hover {
    text-decoration: none;
}

/* ============================================
   PRZYCISKI
   ============================================ */
.ltca-auth-submit {
    display: block;
    width: 100%;
    height: 54px;
    padding: 0 30px;
    font-size: 14px;
    font-weight: normal;
    color: var(--ltca-white);
    background-color: var(--ltca-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    min-height: 54px;
    text-transform: none;
}

.ltca-auth-submit:hover:not(:disabled) {
    background-color: var(--ltca-primary-hover);
}

.ltca-auth-submit:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.ltca-auth-submit-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ltca-text);
    background-color: var(--ltca-white);
    border: 1px solid var(--ltca-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ltca-auth-submit-secondary:hover {
    background-color: #f9fafb;
    border-color: var(--ltca-text);
    color: var(--ltca-text);
    text-decoration: none;
}

/* ============================================
   PRZYCISKI W WIERSZU (LOGOWANIE)
   ============================================ */
.ltca-auth-buttons-row {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.ltca-auth-buttons-row .ltca-auth-submit {
    flex: 1;
}
.ltca-auth-buttons-row .ltca-auth-link-btn {
    flex: 1;
}

.ltca-auth-buttons-row .ltca-auth-submit-secondary {
    flex: 1;
}
.ltca-auth-buttons-row .ltca-auth-span {
    flex: 1;
}



@media (min-width: 577px) {
    .ltca-auth-buttons-row .ltca-auth-submit {
        width: 50%;
        padding: 0;
    }
    .ltca-auth-buttons-row .ltca-auth-link-btn {
        width: 50%;
        padding: 0;
    }

    .ltca-auth-buttons-row .ltca-auth-submit-secondary {
        width: 50%;
        padding: 0;
    }
    .ltca-auth-buttons-row .ltca-auth-span {
        width: 50%;
        padding: 0;
    }
}

/* ============================================
   LINK DO REJESTRACJI (W LOGOWANIU)
   ============================================ */
.ltca-auth-register-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.ltca-auth-register-link-text {
    font-size: 14px;
    color: var(--ltca-text-light);
}

.ltca-auth-register-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ltca-primary);
    background-color: var(--ltca-white);
    border: 1px solid var(--ltca-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ltca-auth-register-link-btn:hover {
    background-color: var(--ltca-primary);
    color: var(--ltca-white);
    text-decoration: none;
}

/* ============================================
   UKRYTE POLA FIRMOWE
   ============================================ */
.ltca-auth-company-field {
    transition: all 0.3s ease;
}

.ltca-auth-company-field.ltca-hidden {
    display: none !important;
}

/* ============================================
   NIP LOADING
   ============================================ */
.ltca-auth-nip-loading {
    display: none;
    font-size: 12px;
    color: var(--ltca-text-light);
    margin-top: 6px;
}

.ltca-auth-nip-loading i {
    margin-right: 6px;
}

/* ============================================
   INFORMACJA RODO
   ============================================ */
.ltca-auth-rodo {
    font-size: 11px;
    color: var(--ltca-text-light);
    line-height: 1.6;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.ltca-auth-rodo a {
    color: var(--ltca-primary);
    text-decoration: underline;
}

/* ============================================
   STRONA /LOGIN - LAYOUT SIDE BY SIDE
   ============================================ */
.ltca-auth-page-wrapper {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 40px auto;
    align-items: stretch;
    min-height: 600px;
}

.ltca-auth-page-container {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
}

.ltca-auth-page-column {
    background: var(--ltca-white);
    padding: 50px 45px;
}

.ltca-auth-login-side {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    border-right: 1px solid #e5e8eb;
    background-color: #F7F9FB;
}
.ltca-auth-login-side-show {
    flex: 0 0 380px;
    max-width: 380px;
    border-right: 1px solid #e5e8eb;
    background-color: #F7F9FB;
}
.ltca-auth-login-side-show .ltca-auth-submit,
.ltca-auth-login-side-show .ltca-auth-link-btn{
    width: 100% !important;
}
.ltca-auth-login-side-show .ltca-auth-buttons-row{
    flex-direction: column;
}

.ltca-auth-register-side {
    flex: 1;
}
.ltca-auth-register-side .ltca-auth-recaptcha-wrapper{
    background: #e5e8eb;
}

.ltca-auth-page-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ltca-text);
    margin: 0 0 5px 0;
    text-transform: none;
}

.ltca-auth-page-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--ltca-text);
    margin: 0 0 30px 0;
}

/* SSO Buttons */
.ltca-auth-sso {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.ltca-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.ltca-auth-divider::before,
.ltca-auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.ltca-auth-divider span {
    padding: 0 15px;
    font-size: 13px;
    color: var(--ltca-text-light);
}

.ltca-auth-sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 48px;
    background: var(--ltca-white);
    border: 1px solid var(--ltca-border);
    border-radius: 6px;
    color: var(--ltca-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.ltca-auth-sso-btn:hover {
    border-color: var(--ltca-text);
    background: #f9fafb;
    text-decoration: none;
    color: var(--ltca-text);
}

.ltca-auth-sso-icon {
    width: 20px;
    height: 20px;
}

/* Link button */
.ltca-auth-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    min-height: 54px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ltca-text);
    background-color: var(--ltca-white);
    border: 1px solid var(--ltca-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.ltca-auth-link-btn:hover {
    background-color: #f9fafb;
    border-color: var(--ltca-text);
    color: var(--ltca-text);
    text-decoration: none;
}

@media (max-width: 992px) {
    .ltca-auth-page-container {
        flex-direction: column;
    }
    
    .ltca-auth-login-side {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* ============================================
   MODAL RESET HASŁA
   ============================================ */
.ltca-auth-reset-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
}

.ltca-auth-description {
    font-size: 14px;
    color: var(--ltca-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.ltca-auth-recaptcha-wrapper{
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* ============================================
   MODAL LOGOWANIE
   ============================================ */
.ltca-auth-login-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 40px;
}
.ltca-auth-login-container-light {
    margin: 0 auto;
    background-color: #F7F9FB;
    padding: 20px 40px;
}
.ltca-auth-login-container-white {
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 20px 40px;
}
.ltca-auth-login-container-blue {
    margin: 0 auto;
    background-color: #EAEFF4;
    padding: 20px 40px;
}
@media (min-width: 769px) {
    .ltca-auth-login-container,
    .ltca-auth-login-container-light,
    .ltca-auth-login-container-white {
        padding: 40px 80px;
    }
    .ltca-auth-login-container-blue {
        padding: 20px 80px 40px 80px;
    }
}

/* ============================================
   MODAL REJESTRACJA
   ============================================ */
.ltca-auth-register-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

/* ============================================
   FOOTER FORMULARZY MODALNYCH
   ============================================ */
.ltca-auth-footer {
    display: flex;
    gap: 15px;
    margin-top: 0;
    padding-top: 0;
    text-align: center;    
    align-items: center;
}

.ltca-auth-footer span {
    font-size: 14px;
    color: var(--ltca-text-light);
}

.ltca-auth-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ltca-primary);
    text-decoration: none;
    cursor: pointer;
    margin: 30px auto 0 auto;
}

.ltca-auth-link:hover {
    text-decoration: underline;
    color: var(--ltca-primary);
}

.ltca-auth-footer-note {
    font-size: 12px;
    color: var(--ltca-text-light);
    font-style: italic;
}

/* ============================================
   PROFIL UŻYTKOWNIKA
   ============================================ */
.ltca-auth-profile-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   RESPONSYWNOŚĆ
   ============================================ */
@media (max-width: 576px) {
    .ltca-auth-title {
        font-size: 24px;
    }
    
    .ltca-auth-register-container,
    .ltca-auth-login-container,
    .ltca-auth-reset-container {
        padding: 25px 20px;
    }
    
    .ltca-auth-password-section {
        padding: 20px 15px;
    }
    
    .ltca-auth-password-requirements {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ltca-auth-buttons-row {
        flex-direction: column;
    }
    
    .ltca-auth-register-link {
        flex-direction: column;
        gap: 15px;
    }
    
    .ltca-auth-page-column {
        padding: 25px 20px;
    }
}

/* ============================================
   ANIMACJE
   ============================================ */
@keyframes ltca-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ltca-auth-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--ltca-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: ltca-spin 0.8s linear infinite;
    margin-right: 8px;
}

/* ============================================
   PRZYCISKI WYBORU TYPU KONTA
   ============================================ */
.ltca-auth-account-type-selector {
    text-align: left;
    padding: 20px 0;
}

.ltca-auth-row-btns-width100{
    width: 100%;
}
.ltca-auth-row-btns-width100 button{
    width: 100%;
}

.ltca-auth-link-btn i {
    color: var(--ltca-primary);
    margin-right: 10px;
}

.ltca-auth-account-btn-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ltca-text);
    text-transform: none;
}

.ltca-auth-account-btn-desc {
    display: block;
    font-size: 13px;
    color: var(--ltca-text-light);
    margin-top: 5px;
}

.ltca-auth-back-btn-wrapper {
    text-align: left;
}

.ltca-auth-back-btn {
    background: none;
    border: none;
    color: var(--ltca-text-light);
    cursor: pointer;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.ltca-auth-back-btn:hover {
    color: var(--ltca-primary);
    background: none;
}

.ltca-auth-back-btn i {
    margin-right: 5px;
}

/* Badge typu konta */
.ltca-auth-account-type-display {
    padding: 12px 0;
}

.ltca-account-type-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.ltca-account-type-badge.ltca-company,
.ltca-account-type-badge.ltca-private  {
    display: flex;
    width: 100%;
    font-weight: normal;
    color: var(--ltca-white);
    background-color: var(--ltca-primary);
    border-radius: 6px;
    text-transform: none;
    justify-content: center;
    align-items: center;
}

