body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74ebd5 0%, #9face6 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
  width: 350px;
  text-align: center;
}

.heading {
  margin: 0;
  font-size: 26px;
  color: #333;
}

.divide {
  border: none;
  height: 2px;
  background: #ddd;
  margin: 15px 0;
}

input {
  width: 90%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

input:focus {
  border-color: #6a82fb;
  box-shadow: 0 0 6px rgba(106, 130, 251, 0.5);
}

button {
  width: 95%;
  padding: 14px;
  border: none;
  background: #6a82fb;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #5b72e4;
  transform: scale(1.05);
}

.login-link {
  font-size: 14px;
  margin-top: 20px;
}

.login-link a {
  text-decoration: none;
  color: #6a82fb;
  font-weight: bold;
}

#error-integrity{
  color: #ff4d4d;
  font-size: 10px;
  margin-left:10px;
  margin-top: 8px;
  text-align: left;
}
