body {
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  margin: 0;
}

.login-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #3b2419, #2a1812);
}

.login-card {
  width: 100%;
  max-width: 380px;
  padding: 35px 30px;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  color: white;
}

/* Logo */

.logo-box {
  text-align: center;
  margin-bottom: 25px;
}

.logo-circle {
  width: 70px;
  height: 70px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle i {
  color: #6f3c1e;
  font-size: 30px;
}

.logo-box h1 {
  margin-top: 12px;
  font-weight: bold;
}

.subtitle {
  letter-spacing: 1px;
  opacity: .8;
  margin-top: 20px;
}

/* Inputs */

.custom-input {
  border-radius: 10px !important;
  padding: 12px;
  border: none;
}

.custom-input:focus {
  box-shadow: none;
  outline: 2px solid #f08b46;
}

/* Password eye */

.password-box {
  position: relative;
}

.password-box span {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  z-index: 10;
}

/* Button */

.login-btn {
  background: #f08b46;
  border-radius: 12px;
  padding: 12px;
  color: white;
  font-weight: bold;
  border: none;
  transition: .3s;
}

.login-btn:hover {
  background: #ff9c5c;
}

/* Validation */

input.error {
  outline: 2px solid #dc3545;
}
