/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f7;
    color: #333;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 20% 35%, rgba(170, 39, 187, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 44%, rgba(170, 39, 187, 0.05) 0%, transparent 50%);
    position: relative;
    overflow-x: hidden;
}

.main-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Side Social Icons */
.side-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #f0f0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: scale(1.1);
}

.instagram:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.youtube:hover {
    background-color: #FF0000;
    color: white;
}

.linkedin:hover {
    background-color: #0077B5;
    color: white;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo img {
    height: 40px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
    z-index: 1000;
}

nav {
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #aa27bb;
}

.btn-register {
    background: linear-gradient(135deg, #aa27bb 0%, #932ea6 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(170, 39, 187, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 70px;
    position: relative;
    border-bottom: 1px solid rgba(170, 39, 187, 0.2);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(170, 39, 187, 0) 0%,
        rgba(170, 39, 187, 0.4) 50%,
        rgba(170, 39, 187, 0) 100%);
    width: 100%;
}

.hero-content {
    width: 50%;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(170, 39, 187, 0.1);
    border-radius: 20px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.hero-badge span {
    background: linear-gradient(135deg, #aa27bb 0%, #b154e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 14px;
    font-weight: 600;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #222;
}

.colored-text {
    color: #aa27bb;
}

.hero p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    max-width: 90%;
}

.stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: rgba(50, 171, 148, 0.2);
    color: #32ab94;
    border-radius: 50%;
    font-size: 12px;
}

/* Login Form */
.login-container {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aa27bb;
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #aa27bb;
    box-shadow: 0 0 0 2px rgba(170, 39, 187, 0.1);
}

.form-group input::placeholder {
    color: #aaa;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    accent-color: #aa27bb;
}

.remember-me label {
    font-size: 14px;
    color: #666;
}

.forgot-password {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #aa27bb;
}

.login-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-login, .btn-google {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login {
    background: linear-gradient(135deg, #aa27bb 0%, #932ea6 100%);
    color: white;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(170, 39, 187, 0.3);
}

.btn-google {
    background-color: white;
    color: #555;
    border: 1px solid #e0e0e0;
}

.btn-google:hover {
    background-color: #f8f8f8;
}

.btn-google img {
    height: 20px;
}

.signup-link {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.signup-link a {
    color: #32ab94;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #aa27bb;
}

/* Hero Image */
.hero-image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero p {
        max-width: 100%;
    }

    .login-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .side-social {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1;
    }

    .mobile-toggle {
        display: block;
        order: 2;
    }

    nav {
        flex-basis: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        margin-top: 15px;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .register-btn {
        order: 2;
    }

    .hero h1 {
        font-size: 42px;
    }

    .login-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header {
        justify-content: space-between;
    }

    .logo img {
        height: 30px;
    }

    .register-btn {
        display: none;
    }

    nav.active {
        max-height: 350px;
    }

    nav ul {
        align-items: center;
    }

    nav ul li a {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .login-container {
        padding: 20px 15px;
    }
}
