@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.container-main {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .container-main {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-bar {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-radio {
    transition: all 0.15s ease;
}

.btn-radio:hover {
    background: #f8fafc;
    border-color: #64748b;
}

.btn-radio.selected {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    color: white;
    border-color: #475569;
}

input:focus {
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1);
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 46px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.375rem !important;
    padding: 0 !important;
    background-color: white !important;
    transition: all 0.15s ease !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    color: #334155 !important;
    font-size: 0.875rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #94a3b8 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 0.75rem !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #64748b !important;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1) !important;
    outline: none !important;
}

.select2-dropdown {
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #cbd5e1 !important;
    border-radius: 0.375rem !important;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.875rem !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #64748b !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1) !important;
}

.select2-results__option {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
    color: #334155 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option[aria-selected] {
    background-color: #475569 !important;
    color: white !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f1f5f9 !important;
    color: #334155 !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    color: #64748b !important;
    font-size: 1.25rem !important;
    line-height: 46px !important;
    margin-right: 0.5rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #334155 !important;
}

#errorNotification {
    backdrop-filter: blur(10px);
}

#errorNotification.show {
    transform: translateX(0);
    animation: slideInBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(150%);
        opacity: 0;
    }

    60% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

#errorList::-webkit-scrollbar {
    width: 6px;
}

#errorList::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

#errorList::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

#errorList::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

#errorList li {
    display: flex;
    align-items: start;
    padding: 0.5rem;
    background: white;
    border-radius: 0.375rem;
    border-left: 2px solid #f59e0b;
    transition: all 0.15s ease;
}

#errorList li:hover {
    background: #fef3c7;
    transform: translateX(2px);
}

#errorList li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}