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

:root {
    --primary-red: #DC2626;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-gray: #F3F4F6;
    --border-gray: #E5E7EB;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Login Container */
.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Logo Header */
.logo-header {
    padding: 2rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon svg {
    display: block;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.2;
}

/* Main Content */
.login-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 3rem 4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Left Side - Marketing Content */
.left-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-red);
}

/* Right Side - Login Form */
.right-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
}

.login-box {
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Social Login Buttons */
.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--bg-gray);
    border-color: var(--text-light);
}

.social-btn:active {
    transform: scale(0.98);
}

.social-btn svg {
    flex-shrink: 0;
}

.linkedin-btn:hover {
    border-color: #0A66C2;
    background: #F0F7FF;
}

/* Security Info */
.security-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.security-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

/* Terms */
.terms {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
}

.terms-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--border-gray);
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .left-side {
        padding-right: 0;
        text-align: center;
    }

    .right-side {
        padding-left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .logo-header {
        padding: 1.5rem 2rem;
    }

    .login-content {
        padding: 1.5rem 2rem 3rem;
    }

    .login-box {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo-header {
        padding: 1rem 1.5rem;
    }

    .login-content {
        padding: 1rem 1.5rem 2rem;
    }

    .login-box {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .login-title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 1rem 1.5rem;
    }
}
