body {
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  margin: 0;
}

html,
body {
  height: 100%;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.login-box {
  max-width: 400px;
  width: 100%;
  text-align: center;
  padding: 2rem;
}

.spyn-logo {
  height: 36px;
  margin-top: 1rem;
}

.subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 2rem;
}

.login-title {
  margin-top: 9rem;
}

.form-floating input {
  border-radius: 0;
}

.underline-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  box-shadow: none;
  font-weight: 400;
  background-color: transparent;
}

.underline-input:focus {
  border-bottom: 2px solid #e41144;
  outline: none;
  box-shadow: none;
}

.form-floating>label {
  padding-left: 0;
  color: #666;
  font-size: 0.875rem;
}

.btn-continue {
  background-color: #e41144;
  color: white;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-continue:hover {
  background-color: #c9103b;
}

.social-btn {
  border-radius: 999px;
  text-align: left;
  font-weight: 500;
}

.social-btn i {
  margin-right: 8px;
}

.or-divider {
  color: #999;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.error {
  color: #e74c3c;
  font-size: 0.875rem;
  text-align: left;
  margin-top: 0.5rem;
}

.footer-links {
  font-size: 0.75rem;
  margin-top: 2rem;
  color: #888;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 4px;
}

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

.right-image-container {
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

.right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.password-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}


/* Hide Edge's built-in password reveal button */
input[type="password"]::-ms-reveal {
  display: none;
}

/* Also for newer Edge versions */
input[type="password"]::-ms-clear {
  display: none;
}