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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fb;
    color: #1e293b;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Left Panel Styles */
.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
}

.left-panel .content {
    max-width: 400px;
    text-align: center;
}

.left-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.left-panel p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Right Panel Styles */
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.brand i {
    font-size: 1.75rem;
    color: #2563eb;
}

.brand h1 {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-icon input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.input-icon input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.forgot {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    padding: 0.875rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

/* Separator and Social Login */
.separator {
    text-align: center;
    color: #94a3b8;
    position: relative;
    margin: 1.5rem 0;
}

.separator::before,
.separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e2e8f0;
}

.separator::before { left: 0; }
.separator::after { right: 0; }

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #4b5563;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.back-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-home:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .left-panel {
        display: none;
    }
    
    .right-panel {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .right-panel {
        padding: 1rem;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
}