﻿input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--bs-bg-gray-color) inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.custom-auth-tabs {
    border-bottom: none;
    gap: 0;
}

.custom-auth-tabs .nav-link.custom-tab-style {
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    font-size: 1.5rem;
    color: #999;
    padding: 0 20px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.custom-auth-tabs .nav-link.custom-tab-style:hover {
    color: #666;
    isolation: isolate;
}

.custom-auth-tabs .nav-link.active.custom-tab-style {
    color: #000 !important;
    font-weight: 700;
    background-color: transparent !important;
}

.custom-auth-tabs .nav-item:first-child .nav-link {
    border-right: 2px solid #ddd !important;
}

.ts-form-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/*.ts-form-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.ts-form-input {
    border: none;
    border-bottom: 2px solid #d5d5d5;
    border-radius: 0;
    padding: 10px 10px 10px 35px;
    background-color: transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #495057;
}

.ts-form-input:focus {
    background-color: transparent;
    box-shadow: none;
    border-bottom-color: var(--bs-orange-custom);
}

.input-icon {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 1rem;
    color: var(--bs-orange-custom);
    transition: all 0.3s;
}

.ts-form-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}*/

.btn-ts-form-orange {
    background-color: var(--bs-orange-custom);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-ts-form-orange:hover {
    background-color: #e36a09; 
    color: white;
    transform: translateY(-1px);
}

.forgot-pass-link {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-pass-link:hover {
    color: var(--bs-orange-custom);
}

.register-type-selector {
    display: flex;
    background-color: #f1f1f1;
    border-radius: 50px;
    padding: 5px;
    justify-content: space-between;
}

.type-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    border-radius: 50px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.type-btn.active {
    background-color: white;
    color: var(--bs-orange-custom);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-weight: 700;
    border: 1px solid;
}

select.ts-form-input {
    appearance: none;
    cursor: pointer;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

