body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    system-ui, sans-serif;
  background: #dde1e7;
}

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

.login-card {
  background: #dde1e7;
  padding: 24px 20px;
  border-radius: 16px;
  max-width: 360px;
  width: 100%;
  box-shadow: -3px -3px 7px #ffffff73,
    2px 2px 5px rgba(94, 104, 121, 0.288);
}

.title {
  font-size: 20px;
  margin: 0 0 8px;
}

.desc {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  font-size: 14px;
}

button {
  margin-top: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  background: #dde1e7;
  color: rgb(97, 96, 96);
  cursor: pointer;
  box-shadow: -3px -3px 7px #ffffff73,
    2px 2px 5px rgba(94, 104, 121, 0.288);
}

button:disabled {
  opacity: 0.7;
  cursor: default;
}

.message {
  font-size: 13px;
  margin-top: 10px;
  color: #1e293b;
}