body.login-body {
  background-color: #1f2937;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}

.login-card {
  background-color: #2d3748;
  padding: 2rem 2rem 2.5rem;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  max-width: 380px;
  width: 100%;
  padding: 2rem;
  margin: 0 auto;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-logo img {
  max-width: 70%;
  margin-bottom: 1rem;
}

.login-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.social-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.social-button.google {
  background-color: #db4437;
}

.social-button.linkedin {
  background-color: #0077b5;
}

.social-button:hover {
  opacity: 0.85;
}

.divider-text {
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #bbb;
}

.login-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.login-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.login-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: none;
  background: #edf2f7;
  font-size: 1rem;
}


.form-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
  color: #bbb;
}

.form-links label {
  font-weight: normal;
}

.form-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.form-links a:hover {
  color: #D34B47;
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #4f46e5;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-button:hover {
  background-color: #3730a3;
}

.signup-link {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.signup-link a {
  color: #D34B47;
  text-decoration: none;
  font-weight: bold;
}

.signup-link a:hover {
  text-decoration: underline;
}

.footer-text {
  display: none;
}

.icon-input .input-wrapper i,
.input-wrapper .svg-inline--fa {
  display: none;
}

.form-errors {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.form-errors li {
  color: #D34B47;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  text-align: left;
}
