/* Register Page Styles */
.register-page {  
    position: relative;
    overflow-x: hidden;
    
    background: linear-gradient(to bottom, 
    rgba(12, 28, 32, 1) 0%,
    rgba(11, 20, 27, 1) 90%
    );
}

/* Register Page Slideshow Banner */
.register-slideshow {
    position: relative;
    width: 100%;
    height: 18.75rem;
    overflow: hidden;
}

.register-slideshow .slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.register-slideshow .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.register-slideshow .slide.active {
    display: block;
}

.register-slideshow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, 
        rgba(11, 25, 30, 0) 0%,
        rgba(11, 25, 30, 0.3) 15%,
        rgba(11, 25, 30, 0.5) 30%,
        rgba(11, 25, 30, 0.7) 60%,
        rgba(11, 25, 30, 0.8) 80%,
        rgba(11, 25, 30, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Register Page Form Container - Override for page layout */
.register-page .register-form-container {
    margin-top: -23%;
}

/* Register Page Registration Tabs */
.register-tabs {
    display: flex;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1A1A1A;
}

.register-tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background-color: #1A1A1A;
    color: #888;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius:8px;
}


.register-tab-btn.active {
    background-color: #00FF90;
    color: #0B141B;
    z-index: 2;
}

.register-tab-icon {
    width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.6) contrast(100%);
}

.register-tab-btn.active .tab-icon-image {
    filter: brightness(0) saturate(100%) invert(8%) sepia(23%) saturate(809%) hue-rotate(144deg) brightness(99%) contrast(100%);
}



.register-country-search {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background-color: #0B141B;
    z-index: 1001;
}

.register-country-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 0.875rem;
    outline: none;
}

.register-country-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.register-country-search-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}


/* Custom scrollbar for country options */
.register-country-options::-webkit-scrollbar {
    width: 0.375rem;
}

.register-country-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.register-country-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.register-country-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Registration Success Modal */
.register-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

/* Register Page Form Visibility */
.register-email-form {
    display: none;
}

.register-phone-form {
    display: flex;
}


