:root {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  color: #101828;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, 0.95),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(99, 171, 255, 0.55),
      transparent 32%
    ),
    linear-gradient(135deg, #d9ebff, #f7fbff 48%, #bfd9f7);
}

button,
input {
  font: inherit;
}

.login-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.login-card {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 32px 90px rgba(31, 75, 124, 0.22);
  backdrop-filter: blur(30px) saturate(140%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
  font-size: 21px;
}

.brand-logo {
  position: relative;
  width: 48px;
  height: 48px;
  transform: rotate(-30deg);
}

.brand-logo span {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f7aff, #86b7ff);
}

.brand-logo span:nth-child(1) {
  left: 0;
  top: 10px;
}

.brand-logo span:nth-child(2) {
  right: 0;
  top: 0;
  background: linear-gradient(135deg, #4c9bff, #245cff);
}

.brand-logo span:nth-child(3) {
  right: 0;
  bottom: 0;
}

header {
  margin-bottom: 26px;
}

.eyebrow {
  color: #1268ec;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1 {
  margin: 10px 0 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

header p {
  margin: 0;
  color: #607086;
  line-height: 1.6;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(112, 135, 165, 0.22);
  border-radius: 17px;
  outline: none;
  color: #101828;
  background: rgba(255, 255, 255, 0.68);
}

input:focus {
  border-color: rgba(36, 116, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(36, 116, 255, 0.13);
}

button {
  height: 56px;
  margin-top: 4px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #1972ff, #0b59f5);
  box-shadow: 0 14px 34px rgba(25, 114, 255, 0.3);
  font-weight: 900;
  cursor: pointer;
}

.alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 79, 79, 0.2);
  border-radius: 15px;
  color: #b42318;
  background: rgba(255, 235, 235, 0.72);
  font-size: 14px;
  font-weight: 700;
}

footer {
  margin-top: 28px;
  color: #718096;
  text-align: center;
  font-size: 12px;
}