body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.jaagili-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.login-column {
  flex: 1 1 100%;
  max-width: 520px;
}

.logo-group {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  font-size: 48px;
  font-weight: 700;
  color: #2d6fbc;
  margin-bottom: 8px;
}

.tagline {
  font-size: 18px;
  color: #2d6fbc;
}

.login-frame {
  background-color: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.login-box {
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: none;
}

.login-box form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-box label {
  color: #2d6fbc;
  font-size: 17px;
  font-weight: 500;
}

.login-box input {
  padding: 14px;
  font-size: 17px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.login-box input:focus {
  border-color: #2d6fbc;
  outline: none;
}

.login-btn {
  padding: 14px;
  font-size: 18px;
  background-color: #2d6fbc;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #1e5fa3;
}

.links {
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
}

.links a {
  color: #2d6fbc;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
}

.links a:hover {
  text-decoration: underline;
}

.error-message {
  color: #e74c3c;
  background-color: #fceae9;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

.feature-column {
  flex: 1 1 100%;
  max-width: 720px;
  margin-top: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.feature-box {
  background-color: #fff;
  border: 2px solid #2d6fbc;
  border-radius: 22px;
  padding: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #2d6fbc;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-box:hover {
  transform: scale(1.05);
}
