/* Enhanced sign-up page styles */



/* Style the breadcrumb area */
.signup-page .page-title-area {
    background: linear-gradient(rgba(13, 17, 23, 0.92), rgba(13, 17, 23, 0.92)), url('../img/bg/page-title-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signup-page .page-title-content h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.signup-page .grb-breadcrumb {
    justify-content: center;
}

.signup-page .grb-breadcrumb .breadcrumb-item,
.signup-page .grb-breadcrumb .breadcrumb-item a,
.signup-page .grb-breadcrumb .breadcrumb-item.active {
    color: #c0c8d1;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-page .grb-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-green);
}

.signup-page .grb-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    color: var(--primary-green);
    opacity: 0.6;
    padding: 0 0.8rem;
    font-weight: 300;
}

/* Main content area with animated background */
.signup-page .contact-area {
    background-color: #0d1117;
    position: relative;
    overflow: hidden;
}

.signup-page .contact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, transparent 40%, rgba(var(--primary-green-rgb), 0.05) 50%, transparent 60%);
    animation: premium-shine 15s linear infinite;
    z-index: 1;
}

@keyframes premium-shine {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}

/* Add some floating particles for more animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: rgba(var(--primary-green-rgb), 0.2);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    filter: blur(5px);
}

.particle.p1 { top: 10%; left: 15%; width: 50px; height: 50px; animation-duration: 25s; }
.particle.p2 { top: 20%; left: 80%; width: 20px; height: 20px; animation-duration: 18s; animation-delay: 2s; }
.particle.p3 { top: 70%; left: 5%; width: 30px; height: 30px; animation-duration: 22s; animation-delay: 5s; }
.particle.p4 { top: 85%; left: 90%; width: 60px; height: 60px; animation-duration: 15s; animation-delay: 1s; }
.particle.p5 { top: 50%; left: 50%; width: 25px; height: 25px; animation-duration: 19s; animation-delay: 3s; }

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-80px) rotate(180deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.1;
    }
}

/* Ensure form cards are on top */
.signup-page .container {
    position: relative;
    z-index: 2;
}

.signup-info-card,
.signup-form-card {
    background: rgba(23, 27, 34, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.signup-info-card:hover,
.signup-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.signup-info-card h4,
.signup-form-card h4 {
    color: #fff;
    font-weight: 600;
}

.signup-info-card p {
    color: #aab8c5;
}

.signup-info-card .contact-address-list li .contact-list-text span a {
    color: #aab8c5;
}
.signup-info-card .contact-address-list li .contact-list-text span a:hover {
    color: var(--primary-green);
}

.signup-info-card .contact-address-list li .contact-list-icon {
    background-color: rgba(var(--primary-green-rgb), 0.1);
    color: var(--primary-green);
}

.signup-form .form-control,
.signup-form input[type="text"],
.signup-form input[type="password"],
.signup-form input[type="email"],
.signup-form select {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
}

.signup-form input::placeholder {
    color: #8899a6;
}

.signup-form input:focus {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(var(--primary-green-rgb), 0.3);
}

.signup-form .btn-container {
    text-align: center;
}

.signup-form .grb-btn {
    background: linear-gradient(45deg, var(--primary-green), #4ad991);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(var(--primary-green-rgb), 0.4);
}

.signup-form label {
    color: #aab8c5;
    font-size: 15px;
}

.signup-form label a {
    color: var(--primary-green);
    text-decoration: none !important;
}

.signup-form label a:hover {
    text-decoration: underline !important;
}

main {
    padding-top: 0 !important;
} 