﻿:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.registration-section {
    background: var(--primary-gradient);
    padding: 12px 0 80px;
    position: relative;
    overflow: hidden;
}

    .registration-section::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat;
        background-size: cover;
        opacity: 0.3;
    }

.registration-content {
    position: relative;
    z-index: 2;
}

.registration-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.registration-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.registration-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
}




.cta-button {
    background: var(--secondary-gradient);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    width: 100%;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        color: white;
    }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 60%;
        right: 15%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        width: 60px;
        height: 60px;
        bottom: 30%;
        left: 20%;
        animation-delay: 4s;
    }

.section-padding {
    padding: 100px 0;
}

.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.stats-section {
    background: var(--dark-gradient);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f093fb;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 10px;
}

.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

    .social-icons a:hover {
        color: #f093fb;
    }

.rocket-icon {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    font-size: 6rem;
    color: white;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.navbar {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: rgba(255,255,255,0.95) !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

        .navbar.scrolled .navbar-brand,
        .navbar.scrolled .nav-link {
            color: #2c3e50 !important;
        }

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white !important;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: #f093fb !important;
    }

.form-label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-check-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.form-check-input {
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

    .form-check-input:checked {
        background-color: #f093fb;
        border-color: #f093fb;
    }

@media (max-width: 768px) {
    .registration-title {
        font-size: 2.5rem;
    }

    .registration-subtitle {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .registration-form {
        padding: 30px 20px;
    }

    .rocket-icon {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .registration-section {
        padding: 100px 0 60px;
    }
}
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.login-section {
    background: var(--primary-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .login-section::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat;
        background-size: cover;
        opacity: 0.3;
    }

.login-content {
    position: relative;
    z-index: 2;
}

.brand-section {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    animation: float 4s ease-in-out infinite;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.brand-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.login-form-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 450px;
    margin: 0 auto;
}

.login-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border: none;
    border-radius: 15px;
    padding: 20px 20px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

    .form-control:focus {
        background: white;
        box-shadow: 0 0 0 0.25rem rgba(240, 147, 251, 0.25);
        border-color: transparent;
    }

.form-floating > label {
    color: #666;
    font-weight: 500;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
    transition: color 0.3s ease;
}

    .password-toggle:hover {
        color: #f093fb;
    }

.forgot-password {
    text-align: right;
    margin-bottom: 2rem;
}

    .forgot-password a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .forgot-password a:hover {
            color: #f093fb;
        }

.login-button {
    background: var(--secondary-gradient);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    width: 100%;
}

    .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        color: white;
    }

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255,255,255,0.3);
    }

    .divider span {
        background: var(--primary-gradient);
        color: rgba(255,255,255,0.8);
        padding: 0 20px;
        font-size: 0.9rem;
    }

.social-login {
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .social-btn:hover {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.5);
        color: white;
        transform: translateY(-2px);
    }

    .social-btn i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

.signup-link {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

    .signup-link a {
        color: #f093fb;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .signup-link a:hover {
            color: white;
        }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 15%;
        left: 5%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 70%;
        right: 10%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        width: 60px;
        height: 60px;
        bottom: 20%;
        left: 15%;
        animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
        width: 90px;
        height: 90px;
        top: 40%;
        right: 5%;
        animation-delay: 1s;
    }

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input {
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    margin-top: 0.2rem;
}

    .form-check-input:checked {
        background-color: #f093fb;
        border-color: #f093fb;
    }

.form-check-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .login-form-container {
        padding: 40px 30px;
        margin: 20px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .brand-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .login-form-container {
        padding: 30px 20px;
        margin: 15px;
    }

    .form-control {
        padding: 15px 15px;
    }
}