* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(to bottom, #0e4aab, #0c3d91);
}

.login-box {
  width: 100%;
  max-width: 28rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-container {
  width: 100px;
  height: 100px;
  background: #0e4aab;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  align-items: center;
}

.logo {
  width: 110px;
  height: auto;
}

.logo-section h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.logo-section p {
  color: #666;
  font-size: 0.875rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.input-with-icon {
  position: relative;
}

.input-with-icon svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.input-with-icon input {
  width: 100%;
  padding: 0.625rem 0.75rem 0.625rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.input-with-icon input:focus {
  outline: none;
  border-color: #0e4aab;
  box-shadow: 0 0 0 3px rgba(14, 74, 171, 0.1);
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #d1d5db;
  accent-color: #0e4aab;
}

.remember-me label {
  font-size: 0.875rem;
  color: #374151;
}

.forgot-password {
  font-size: 0.875rem;
  color: #0e4aab;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.forgot-password:hover {
  color: #0c3d91;
}

.login-button {
  width: 100%;
  padding: 0.75rem;
  background: #0e4aab;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 0.5rem;
}

.login-button:hover {
  background: #0c3d91;
}

.login-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 74, 171, 0.1);
}

.signup-link {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.signup-link a {
  color: #0e4aab;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.signup-link a:hover {
  color: #0c3d91;
}