.access-form {
  display: grid;
  gap: 14px;
  max-width: 440px;
  margin-top: 34px;
}

.access-form label {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.access-form input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  color: var(--white);
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.access-form input::placeholder {
  color: #8b8b8b;
}

.access-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.18);
}

.access-form button {
  height: 58px;
  margin-top: 8px;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.access-form button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}