.signin-page {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: #AD6745;

  display: flex;
  justify-content: center;
  align-items: center;
}

.signin-card {
  width: 100%;
  max-width: 460px;
  background: #FAEBD7;
  padding: 42px 32px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  animation: fadeUp 0.8s ease forwards;
}

.signin-card i {
  font-size: 36px;
  margin-bottom: 18px;
}

.signin-card h1 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.signin-card p {
  color: #666;
  margin-bottom: 26px;
  line-height: 1.5;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signin-form input {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  outline: none;
}

.signin-form input:focus {
  border-color: #111;
}

.signin-form button {
  padding: 14px;
  border: none;
  border-radius: 40px;
  background: #111;
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: 0.35s ease;
}

.signin-form button:hover {
  transform: translateY(-3px) scale(1.03);
  background: white;
  color: black;
}

.signin-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.signin-links a {
  color: #111;
  font-weight: 700;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* REMOVE MOBILE TAP HIGHLIGHT */

*{
    -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
textarea,
select{
    outline:none;
    -webkit-tap-highlight-color: transparent;
}

html{
    -webkit-touch-callout:none;
}

.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 48px;
}

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

.auth-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: rgba(17,17,17,0.92);
  color: white;
  padding: 16px 20px;
  border-radius: 16px;
  z-index: 99999;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.auth-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.auth-toast.error {
  background: #b42318;
}

.auth-toast.success {
  background: #087443;
}