* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  background: linear-gradient(180deg, #f0f7ff 0%, #e6f0ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.bg-decoration {
  position: absolute;
  background-color: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.login-container {
  width: 340px;
  height: auto;
  background-color: white;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.login-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.login-header {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-align: center;
  background-color: #ccc;
  background-image: url("/images/main.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  padding: 0 25px;
}

.header-group {
  margin: 10px 0;
  position: relative;
  padding: 5px 25px;
}

.login-title {
  font-size: 20px;
  font-weight: bold;
  color: #006dcc;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

.input-group {
  position: relative;
  padding: 5px 45px;
}

.input-group:last-of-type {
  margin-bottom: 24px;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.form-input {
  width: 100%;
  text-align: left;
  font-size: 12px;
  padding: 8px 15px;
  border: 1px solid #d1d5db;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.form-input::placeholder {
  color: #9ca3af;
}

.login-btn {
  background-color: #3b82f6;
  color: white;
  font-weight: 500;
  padding: 10px;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  margin: 10px 45px 25px 45px;
}

.login-btn:hover {
  background-color: #2563eb;
  transform: scale(1.02);
}

.login-btn:active {
  transform: scale(0.98);
}

.copyright {
  margin-top: auto;
  text-align: center;
  color: #b7b7b7;
  font-size: 12px;
  padding: 0 20px 20px 20px;
}

.copyright a {
  display: block;
  font-size: 12px;
  color: #b7b7b7;
  padding-top: 5px;
  text-decoration: none;
}

.copyright a:hover {
  color: #666;
  text-decoration: none;
}