* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
  --primary: #000000;
  --primary-light: #333333;
  --accent: #0070f3;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eaeaea;
  --gray-300: #e1e1e1;
  --gray-400: #cacaca;
  --gray-500: #a0a0a0;
  --gray-600: #666666;
  --gray-700: #444444;
  --gray-800: #333333;
  --gray-900: #111111;
  --radius: 4px;
}

body {
  background-color: var(--gray-100);
  color: var(--gray-900);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Login Container */
.container {
  width: 100%;
  max-width: 800px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
}

/* Left Side */
.left {
  width: 40%;
  background-color: var(--primary);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.eula {
  font-size: 0.9rem;
  line-height: 1.6;
  color: white !important;
}

.eula a {
  color: white;
  display: inline-block;
  margin-top: 10px;
}

/* Right Side */
.right {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form Styles */
form {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-800);
  background-color: white;
  margin-bottom: 20px;
}

input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.1);
}

.password-container {
  position: relative;
}

#togglePassword {
  position: absolute;
  right: 10px;
  top: 35%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 0.8rem;
  cursor: pointer;
}

/* Remember Me Checkbox */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check-input {
margin-top: 1.5vh;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-check-label {
  font-size: 0.85rem;
  color: var(--gray-700);
  cursor: pointer;
}

#submit {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}

#submit:hover {
  background: var(--primary-light);
}

#errorMessage {
  color: red;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

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

  .left {
      width: 100%;
      padding: 30px;
  }

  .right {
      width: 100%;
      padding: 30px;
  }
}