* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #080b0d;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.login-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 45%, rgba(249, 122, 5, 0.35), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(249, 122, 5, 0.22), transparent 35%),
    linear-gradient(135deg, #080b0d 0%, #111 55%, #291000 100%);
}

.login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 22px;
  padding: 42px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.login-logo img {
  max-width: 190px;
}

.login-card h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #111;
}

.login-subtitle {
  margin: 8px 0 28px;
  color: #666;
  font-size: 14px;
}

.login-form {
  text-align: left;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

.form-group input {
  width: 100%;
  height: 46px;
  border: 1px solid #dfe3e8;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

.form-group input:focus {
  border-color: #f97a05;
  box-shadow: 0 0 0 3px rgba(249, 122, 5, 0.15);
}

.back-home-btn{
  display: inline-block;
  margin-top: 22px;
  color: #f97a05;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.login-button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 10px;
  background: #f97a05;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  margin-top: 8px;
}

.login-button:hover {
  background: #e96f00;
}

.reset-link {
  display: inline-block;
  margin-top: 22px;
  color: #f97a05;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.reset-link:hover {
  text-decoration: underline;
}

.login-error,
.field-error {
  background: #fff1f1;
  color: #b00020;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}

.field-error ul,
.login-error ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 520px) {
  .login-card {
    padding: 30px 22px;
  }

  .login-logo img {
    max-width: 160px;
  }
}

.help-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}