.register-title {
    display: inline-block;
    margin: 20px 0;
    position: relative;
}

.btn-style-text {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: #0d6efd;
    color: white;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: default;
}

.btn-style-text:hover {
    background: #0b5ed7;
}

.arrow-img {
    width: 40px;
    height: auto;
    margin-left: 10px;
    transform: translateY(5px);
}

.registration-container {
    max-width: 500px;
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.selector-container {
    display: flex;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 0px;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.selector-button {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.selector-button.active {
    color: white;
}

.selector-slide {
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #0d6efd;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.selector-title {
    flex: 1; 
    text-align: center;
    justify-content: center;  
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    height: calc(100% - 8px);
    background: #0d6efd;
    border-radius: 28px;
    font-weight: 600;
    color: white;
}


.registration-form {
    display: none;
}

.registration-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1rem;
}

.notification-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.notification {
    padding: 12px 20px;
    margin: 10px 0;
    border-radius: 4px;
    width: 100%;
    animation: fadeIn 0.3s ease-out;
}

.notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-content {
    text-align: center;
}

.notification-message {
    font-size: 14px;
    line-height: 1.4;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}