.registration-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 30px;
    max-width: 1200px;
    position: relative;
}

.form-control:hover {
    border-color: var(--profile-primary, #2E8B57);
}

.form-control:focus {
    outline: none;
    border-color: var(--profile-primary, #2E8B57);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}


.form-label {
    color: var(--button-hover);
    font-weight: 500;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 10px 30px;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
}

.info-section {
    background: var(--info-bg);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid var(--info-border);
    height: 100%;
}

.alert-info {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: #2c3e50;
    margin-top: 20px;
}

.registration-title {
    color: var(--primary-color);
    margin-bottom: 30px;
}
.btn-link {
    color: var(--primary-color);
}
.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.info-section h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-section ul {
    padding-left: 20px;
}

.info-section ul li {
    margin-bottom: 10px;
    color: #34495e;
}

@media (max-width: 768px) {
    .registration-container {
        margin: 12px 0px;
        padding: 30px 0px;
    }

    .info-section {
        margin-top: 30px;
    }

    .btn-primary {
        width: 100%;
        max-width: none;
    }
}

.password-notice {
    background-color: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.profile-select-container {
    margin-bottom: 1.5rem;
}

.profile-select-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--profile-text-secondary, #646464);
}

.profile-select-wrapper {
    position: relative;
    background: white;
}

.profile-select {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--profile-text, #000000);
    background-color: white;
    border: 1px solid var(--profile-border, #E2E8F5);
    border-radius: 0.5rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.profile-select:hover {
    border-color: var(--profile-primary, #2E8B57);
}

.profile-select:focus {
    outline: none;
    border-color: var(--profile-primary, #2E8B57);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

.profile-select option {
    padding: 0.875rem 1rem;
}

.profile-select option::before {
    content: attr(data-flag);
    margin-right: 0.5rem;
}

.profile-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--profile-text-secondary, #646464);
    pointer-events: none;
    transition: transform 0.2s ease-in-out;
}

.profile-select:focus + .profile-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Стилизация для разных состояний */
.profile-select:disabled {
    background-color: var(--profile-bg-light, #F8F9FD);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Анимация при открытии/закрытии */
.profile-select-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.5rem;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.profile-select:focus ~ .profile-select-wrapper::after {
    box-shadow: var(--profile-shadow-sm, 0 0.125rem 0.375rem rgba(39, 84, 255, 0.1));
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .profile-select {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .profile-select-label {
        font-size: 0.8125rem;
    }
    #registrationForm .mb-4 {
        margin-top: -1rem !important;
    }
    #registrationForm .mb-4:last-child {
        margin-top: -1.5rem !important;
    }
    .password-notice {
        font-size: 12px;
        padding: 5px;
    }
    .password-notice p i {
        font-size: 10px;
        line-height: 3px;
    }
}