:root {
  --bg-color: #252525;
  --text-color: #f2f2f2;
  --accent-color: #e53935;
  --input-bg: rgba(255 255 255 / 0.08);
  --label-color: #bbbbbb;
  --input-border: rgba(255 255 255 / 0.2);
  --input-focus-border: #e53935;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.wrapper {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.logo {
  text-align: center;
}
.logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  filter: brightness(0.9);
  border-radius: 12px;
}
h2.title {
  text-align: center;
  font-size: 1.65rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.6px;
  position: relative;
}
h2.title::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 4px;
  opacity: 0.8;
}
.card {
  background: rgba(255 255 255 / 0.05);
  padding: 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 0 1px rgba(255 255 255 / 0.05);
  transition: background 0.3s ease;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--label-color);
  margin-bottom: 8px;
  letter-spacing: 0.6px;
}
.field input {
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  transition: 0.2s ease;
  outline: none;
}
.field input:focus {
  border-color: var(--input-focus-border);
  background: rgba(229, 57, 53, 0.08);
}
.btn-submit {
  background: var(--accent-color);
  color: #fff;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.btn-submit:hover {
  background: #c62828;
}
@media (max-width: 500px) {
  .card {
    padding: 24px 20px;
  }
  h2.title {
    font-size: 1.4rem;
  }
}
