/* ===== Signup Page Styles ===== */

/* ===== Header/Navbar ===== */
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 15px 0;
}

.nav-logo {
    max-height: 50px;
}

.navbar-brand img {
    width: 200px !important;
    height: auto !important;
    max-height: none !important;
}

.navbar-nav .nav-link {
    color: #1f2937;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2563eb;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon::before {
    content: '\f0c9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: #1f2937;
}

/* ===== Container ===== */
.container {
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* ===== Footer ===== */
footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 30px 0;
}

footer p {
    color: #9ca3af;
    margin: 0;
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* ===== Signup Wrapper ===== */
#signup_wraper {
    display: flex;
    min-height: calc(100vh - 72px);
}

/* Left Side - Image/Content */
.signup_left {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.signup_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    background-size: 150px 150px;
    animation: float 30s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-150px); }
}

.signup__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

.signup-content {
    text-align: center;
    color: #fff;
}

.signup-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.signup-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 500;
}

.signup-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.signup-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.signup-features .feature span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.signup-features .feature i {
    font-size: 20px;
    color: #10b981;
}

/* Right Side - Form */
.signup_right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #f9fafb;
}

.signup_title {
    margin-bottom: 30px;
}

.signup_title h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.signup_title p {
    font-size: 16px;
    color: #6b7280;
}

/* Signup Form */
.signup__form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.signup__form .form-group {
    margin-bottom: 20px;
}

.signup__form .form-group.has_icon {
    position: relative;
}

.signup__form .form-group.has_icon .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    z-index: 2;
}

.signup__form .form-group.has_icon .form-control {
    padding-left: 45px;
    padding-right: 45px;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.signup__form .form-group.has_icon .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.signup__form .has_password .pwd_show_hide {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    z-index: 3;
    padding: 0;
}

.signup__form .has_password .pwd_show_hide .show-eye {
    display: inline;
}

.signup__form .has_password .pwd_show_hide .hide-eye {
    display: inline;
}

/* Captcha Placeholder */
.captcha-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    color: #6b7280;
}

.captcha-placeholder i {
    font-size: 24px;
    color: #2563eb;
}

/* Password Requirements */
.password-requirements {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.password-requirements .req-title {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.password-requirements .req-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.password-requirements .req-list li {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.password-requirements .req-list li i {
    font-size: 8px;
    color: #9ca3af;
    transition: all 0.2s ease;
}

.password-requirements .req-list li.valid {
    color: #059669;
}

.password-requirements .req-list li.valid i {
    color: #059669;
}

/* Error Message */
.error-message {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
}

/* Success Message */
.success-message {
    padding: 15px;
    background: #d1fae5;
    border: 1px solid #34d399;
    border-radius: 8px;
    color: #065f46;
    margin-bottom: 20px;
    text-align: center;
}

/* Signup Buttons */
.signup_button_wraper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-signup {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #2563eb;
    border: none;
}

.btn-signup:hover {
    background: #1d4ed8;
}

.signup_with_google {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.6s ease;
}

.signup_with_google:hover {
    background: #1d4ed8;
    border-color: #d1d5db;
}

.signup_with_google i {
    font-size: 18px;
}

/* Signup Footer */
.signup-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.signup-footer p {
    color: #6b7280;
    margin: 0;
}

.signup-footer .link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.signup-footer .link:hover {
    text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #000 !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.whatsapp-button:hover {
    transform: scale(1);
    background-color: #1fcc5f;
}

/* Responsive */
@media (max-width: 991px) {
    #signup_wraper {
        flex-direction: column;
    }
    
    .signup_left {
        flex: none;
        padding: 60px 20px;
    }
    
    .signup_right {
        flex: none;
        padding: 40px 20px;
    }
    
    .signup-content h2 {
        font-size: 28px;
    }
    
    .signup_title h1 {
        font-size: 28px;
    }
    
    .signup__form {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .signup_left {
        padding: 40px 20px;
    }
    
    .signup-content h2 {
        font-size: 24px;
    }
    
    .signup-content p {
        font-size: 15px;
    }
    
    .signup_title h1 {
        font-size: 24px;
    }
    
    .signup__form {
        padding: 25px;
    }
    
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
}

.footer_menu li {
    margin-bottom: -15px;
}


/* Horizontal Social Bar */
.social-bar {
    display: flex;
    justify-content: center; 
    gap: 5px;
    margin: 20px 0; 
}

.social-sidebar {
  display: flex;
  gap: 10px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Circle */
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Colors for each social media */
.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: #e1306c; }
.social-icon.x { background: #1da1f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.pinterest { background: #bd081c; }
.social-icon.telegram { background: #0088cc; }

/* Hover effect */
.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.85;
}