* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #f8f9fa; display: flex; justify-content: center; align-items: center; min-height: 100vh; }

.main-container { width: 100%; padding: 20px; display: flex; justify-content: center; }
.login-card { background-color: #ffffff; width: 1000px; max-width: 100%; height: 600px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); display: flex; overflow: hidden; }

.form-side { width: 50%; padding: 40px 50px; display: flex; flex-direction: column; justify-content: center; }
.image-side { width: 50%; background-color: #f3f4f6; }
.image-side img { width: 100%; height: 100%; object-fit: cover; }

.logo { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.logo-icon { background-color: #4361ee; color: white; width: 35px; height: 35px; border-radius: 8px; display: flex; justify-content: center; align-items: center; font-size: 18px; }
.logo-text { font-size: 24px; font-weight: 700; color: #4361ee; }

.header-text h1 { font-size: 28px; color: #1f2937; margin-bottom: 10px; line-height: 1.2; }
.header-text p { color: #6b7280; font-size: 15px; margin-bottom: 30px; }

.input-wrapper { margin-bottom: 20px; }
.input-wrapper label { display: block; font-size: 13px; color: #4b5563; margin-bottom: 6px; font-weight: 500; }
.input-group { position: relative; width: 100%; }
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #6b7280; }
.input-group input { width: 100%; padding: 12px 15px 12px 45px; border: 1px solid #e5e7eb; border-radius: 4px; font-size: 14px; outline: none; color: #374151; transition: border-color 0.3s; }
.input-group input:focus { border-color: #4361ee; }

.btn-submit { width: 100%; padding: 12px; background-color: #4361ee; color: white; border: none; border-radius: 4px; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 10px; transition: background-color 0.3s; }
.btn-submit:hover { background-color: #3651c9; }

.form-footer { margin-top: 30px; text-align: center; }
.form-footer p { font-size: 12px; color: #9ca3af; line-height: 1.5; max-width: 90%; margin: 0 auto; }

@media (max-width: 768px) {
    .login-card { flex-direction: column; height: auto; }
    .form-side { width: 100%; padding: 30px; }
    .image-side { display: none; }
}