* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left side with background image */
.left-side {
    flex: 1;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.left-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(139, 92, 246, 0.85) 100%);
    backdrop-filter: blur(2px);
}

.left-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
}

.left-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
}

/* Right side with login form */
.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 60px 40px;
}

.welcome-title {
    font-size: 42px;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.welcome-subtitle {
    font-size: 15px;
    color: #a0aec0;
    margin-bottom: 40px;
    font-weight: 400;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e0;
    width: 18px;
    height: 18px;
}

.input-field {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.input-field:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.input-field::placeholder {
    color: #a0aec0;
}

.forgot-password {
    text-align: right;
    margin-top: -8px;
    margin-bottom: 24px;
}

.forgot-password a {
    font-size: 12px;
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password a:hover {
    color: #7c3aed;
}

.login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    font-family: inherit;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
}

.login-button:active {
    transform: translateY(0);
}

.signup-text {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #a0aec0;
}

.signup-text a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signup-text a:hover {
    color: #6d28d9;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #cbd5e0;
    font-size: 12px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider::before {
    margin-right: 12px;
}

.divider::after {
    margin-left: 12px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(124, 58, 237, 0.15);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive design */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
    }

    .left-side {
        display: none;
    }

    .right-side {
        clip-path: none;
    }

    .login-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }

    .welcome-title {
        font-size: 32px;
    }
}
