* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #191919;
  color: #f2f2f2;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.brand {
    position: fixed;

    top: 24px;
    left: 32px;

    display: flex;
    align-items: center;
    gap: 12px;

    z-index: 100;
}

.brand-logo {
    width: 34px;
    height: 34px;

    object-fit: contain;
}

.brand-text {
    color: #f5f5f5;

    font-size: 24px;
    font-weight: 500;

    letter-spacing: 1.5px;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  /* slightly higher, like screenshot */
  padding-bottom: 90px;
}

.login-box {
  width: 540px;
}

.login-box h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 38px;
  color: #f1f1f1;
}

.password-field {
  height: 52px;
  border: 1px solid #3a3a3a;
  background: #191919;

  display: flex;
  align-items: center;
  padding: 0 14px;
}

.password-field input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;

  color: #f2f2f2;
  font-size: 15px;
}

.password-field input::placeholder {
  color: #777;
}

.arrow-button 
{
  background: transparent;
  border: none;
  color: #9c9c9c;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.arrow-button:hover {
  color: #b8860b;
  transform: translateX(3px);
}

#errorMessage {
  margin-top: 14px;
  color: #ff5a5a;
  font-size: 14px;
}