body {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic", sans-serif;
  font-size: 11pt;
  background-color: #f3f5fc;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.login-card {
  max-width: 400px;
  width: 100%;
  background: white;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.login-logo {
  text-align: center;
  margin-bottom: 20px;
}

.login-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.login-header {
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.login-header h3 {
  margin: 0;
  font-size: 16pt;
  color: white;
  font-weight: 600;
}

.login-header p {
  margin: 8px 0 0 0;
  font-size: 10pt;
  color: rgba(255,255,255,0.9);
}

form {
  padding: 0;
}

form label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
  font-size: 10pt;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  background: #f8f9ff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: "Century Gothic", sans-serif;
  font-size: 10pt;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="password"]:focus {
  outline: none;
  border-color: #1a4fcc;
  background: white;
}

.password-wrapper {
  position: relative;
}

.remember-me {
  margin-bottom: 20px;
}

.remember-me label {
  margin: 0;
  font-size: 9pt;
  color: #666;
}

form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1a4fcc 0%, #1a237e 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 11pt;
  font-family: "Century Gothic", sans-serif;
  transition: background 0.3s ease;
}

form button:hover {
  background: linear-gradient(135deg, #163fb3 0%, #1a237e 100%);
}

.footer-text {
  text-align: center;
  font-size: 10pt;
  color: #666;
  margin-top: 15px;
}

.no-underline {
  text-decoration: none;
  color: #1a4fcc;
  font-weight: 500;
}

.no-underline:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  
  .login-card {
    max-width: 100%;
    padding: 15px;
  }
  
  .login-header {
    padding: 15px;
  }
  
  .login-logo img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }
  
  .login-card {
    padding: 15px;
  }
  
  .login-header {
    padding: 15px;
  }
  
  .login-header h3 {
    font-size: 14pt;
  }
  
  .login-logo img {
    width: 85px;
    height: 85px;
  }
  
  .footer-text {
    font-size: 9pt;
  }
}

/* Focus Styles untuk Accessibility */
form input:focus-visible,
form button:focus-visible {
  outline: 2px solid #1a4fcc;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  body {
    background: white;
  }
  
  .login-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .login-header {
    background: #f5f5f5 !important;
    color: #333 !important;
  }
  
  .login-header h3,
  .login-header p {
    color: #333 !important;
  }
}
