/* Register Page Styles */
body { 
    background: #101a28; 
    min-height: 100vh; 
}

.register-main { 
    position: absolute; 
    top: 0; 
    left: 260px; 
    right: 0; 
    bottom: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh; 
    width: auto; 
    margin: 0; 
    padding: 0; 
    background: none; 
}

.register-container { 
    background: rgba(18,24,38,0.98); 
    border-radius: 24px; 
    box-shadow: 0 8px 32px rgba(0,0,0,0.25); 
    display: flex; 
    max-width: 900px; 
    width: 100%; 
    overflow: hidden; 
    align-items: center; 
    margin: 0 auto;
}

.register-slider { 
    flex: 1; 
    min-width: 280px; 
    background: #151d2b; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
}

.slider-img { 
    width: 90%; 
    max-width: 320px; 
    border-radius: 16px; 
    box-shadow: 0 4px 24px rgba(0,0,0,0.18); 
}

.slider-controls { 
    position: absolute; 
    bottom: 24px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 8px; 
}

.slider-dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: #2e3a54; 
    cursor: pointer; 
    transition: background 0.2s; 
}

.slider-dot.active { 
    background: #3b82f6; 
}

.register-form-side { 
    flex: 1.2; 
    padding: 48px 36px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.register-form-side h2 { 
    color: #fff; 
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 32px; 
    text-align: center; 
}

.register-form { 
    width: 100%; 
    max-width: 400px; 
    margin: 0 auto; 
}

.form-row { 
    display: flex; 
    gap: 16px; 
}

.form-group { 
    margin-bottom: 18px; 
    flex: 1; 
}

.form-group label { 
    color: #b6c6e3; 
    font-size: 0.97rem; 
    font-weight: 500; 
    margin-bottom: 6px; 
    display: block; 
}

.form-group input { 
    width: 100%; 
    background: #19243a; 
    border: 1px solid #22304b; 
    border-radius: 8px; 
    padding: 12px 14px; 
    color: #fff; 
    font-size: 1rem; 
    outline: none; 
    transition: border 0.2s; 
}

.form-group input:focus { 
    border-color: #3b82f6; 
}

.form-group .input-icon { 
    position: absolute; 
    right: 16px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #b6c6e3; 
    cursor: pointer; 
}

.form-group input[type="password"] { 
    padding-right: 38px; 
}

.register-form .g-recaptcha { 
    margin: 18px 0 10px 0; 
}

.register-btn { 
    width: 100%; 
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%); 
    color: #fff; 
    font-size: 1.1rem; 
    font-weight: 600; 
    border: none; 
    border-radius: 8px; 
    padding: 14px 0; 
    cursor: pointer; 
    margin-top: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    transition: background 0.2s; 
}

.register-btn:hover { 
    background: linear-gradient(90deg, #16a34a 0%, #2563eb 100%); 
}

.register-form .form-bottom { 
    text-align: center; 
    margin-top: 18px; 
}

.register-form .form-bottom a { 
    color: #22c55e; 
    font-weight: 600; 
    text-decoration: none; 
}

.register-form .form-bottom a:hover { 
    text-decoration: underline; 
}

.forgot-password-link {
    font-size: 0.9rem;
    color: #b6c6e3;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.alert { 
    padding: 12px 16px; 
    border-radius: 10px; 
    margin-bottom: 18px; 
    font-weight: 500; 
}

.alert-error { 
    background: rgba(220,38,38,0.18); 
    color: #fca5a5; 
    border: 1px solid rgba(220,38,38,0.25); 
}

.alert-success { 
    background: rgba(34,197,94,0.18); 
    color: #86efac; 
    border: 1px solid rgba(34,197,94,0.25); 
}

/* Slider Styles */
.register-ad-single {
    width: 350px;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #151d2b;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    margin-left: 15px;
}

.register-ad-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.slider-vertical-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider-vertical-wrapper a {
    width: 100%;
    height: 100%;
    display: block;
}

.slider-vertical-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.slider-vertical-controls {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-vertical-controls button {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.slider-vertical-controls button:hover {
    background: rgba(0,0,0,0.8);
}

/* Responsive Design */
@media (max-width: 900px) { 
    .register-container { 
        flex-direction: column; 
        box-shadow: none; 
        border-radius: 0; 
        align-items: stretch; 
        margin: 0;
        width: 100%;
        max-width: 100%;
    } 
    
    .register-slider, .register-form-side { 
        min-width: 0; 
        width: 100%; 
        padding: 32px 16px; 
    } 
    
    .register-main { 
        position: static; 
        width: 100%; 
        left: 0; 
        right: 0;
        height: auto; 
        min-height: 100vh; 
        padding: 16px 0; 
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .register-ad-single {
        width: 100%;
        min-height: 200px;
        border-radius: 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        margin: 0;
    }
    
    .register-form-side {
        padding: 24px 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .register-form {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
} 