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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #e3f0ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    max-width: 1440px;
    width: 100%;
    min-height: 100vh;
    align-items: center;
}

/* Left Section */
.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.illustration {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration img {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
}

/* Right Section */
.right-section {
    flex: 0 0 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    background: white;
    border-radius: 8px;
    padding: 60px 55px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 560px;
}

.login-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input {
    padding: 15px 18px;
    font-size: 16px;
    border: 2px solid #d1dce6;
    border-radius: 4px;
    transition: all 0.2s;
    background: #f7f9fb;
}

.form-group input:focus {
    outline: none;
    border-color: #0080FF;
    background: white;
}

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

.btn-primary {
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #0080FF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
    margin-bottom: 16px;
}

.btn-primary:hover {
    background: #0066CC;
}

.forgot-password {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.forgot-password .link {
    color: #0080FF;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password .link:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 16px;
}

.btn-google {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    background: white;
    border: 2px solid #d1dce6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
    }
    
    .left-section {
        padding: 40px 40px 20px;
    }
    
    .right-section {
        flex: 1;
        padding: 20px 40px 40px;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 30px 20px 20px;
    }
    
    .right-section {
        padding: 20px 20px 30px;
    }
    
    .login-card {
        padding: 40px 30px;
    }
    
    .login-title {
        font-size: 30px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #f1f5f9;
}