/* Page container */
#formdiv {
  min-height: 80vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  /* background-color: white; */
}
/* Card */
#login-form {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 3rem 2.8rem;
  border-radius: 14px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Header */
.form-header {
  margin-bottom: 2rem;
}

.form-header h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

.form-header .subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Inputs */
#login-form .inputdivs {
  display: flex;
  flex-direction: column;
  margin-top: 1.2rem;
}

#login-form .labels {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

#login-form .inputs {
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  color: #111827;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

#login-form .inputs::placeholder {
  color: #9ca3af;
}

#login-form .inputs:focus {
  outline: none;
  border-color: var(--mainblue, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Submit button */
.submitbtn {
  width: 100%;
  margin-top: 2.2rem;
  padding: 0.9rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--mainblue, #2563eb),
    var(--mainblue2, #1d4ed8)
  );
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.submitbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.submitbtn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Feedback */
#feedback {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #ffffff;
}

/* Bottom Links */
#bottonlinkhouse {
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
  font-size: 0.9rem;
}

.links {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

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

.signuplinks {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.signuplinks:hover {
  text-decoration: underline;
}
