* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 143, 115, 0.45) 0,
      transparent 40%
    ),
    linear-gradient(145deg, #172326, #263238);
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
}

.login-card {
  width: min(440px, 100%);
  padding: 42px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.login-card h1 {
  margin: 0;
  font-size: 46px;
  letter-spacing: -2px;
}

.login-brand-art {
  width: min(280px, 100%);
  height: 96px;
  margin: 0 auto;
  border: 0;
  box-shadow: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.login-card p {
  margin: 12px 0 32px;
  color: #666666;
  font-size: 17px;
}

button {
  width: 100%;
  margin-top: 14px;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

#employeeButton {
  background: #171717;
  color: white;
}

#managerButton {
  background: #eeeeec;
  color: #171717;
}

#ownerSignupButton {
  background: #008f73;
  color: white;
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}
input{

width:100%;

padding:15px;

margin-top:14px;

border-radius:12px;

border:1px solid #ddd;

font-size:16px;

}
label {
  display: block;
  margin-top: 14px;
  color: #444444;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.account-help-link {
  display: inline-block;
  margin-top: 13px;
  color: #006d59;
  font-size: 14px;
  font-weight: 800;
}

#loginMessage {
  min-height: 22px;
  margin: 14px 0 0;
  color: #a00000;
  font-weight: 700;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #52c7a3;
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

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

  .login-card h1 {
    font-size: 38px;
  }

  .login-brand-art {
    height: 82px;
  }
}
