:root {
  --purple: #5d35b0;
  --deep-purple: #35166f;
  --yellow: #ffd23f;
  --ink: #2e2445;
}

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #f9f5ff 0%, #f1eaff 65%, #fff8d9 100%);
  color: var(--ink);
  font-family: 'Nunito', Arial, sans-serif;
}

.auth-status-wrap {
  align-items: center;
  display: flex;
  min-height: 100vh;
  padding: 50px 0;
}

.auth-status-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(53, 22, 111, .14);
  margin: 0 auto;
  max-width: 590px;
  padding: 46px 42px;
  text-align: center;
}

.status-icon {
  align-items: center;
  background: #f1eaff;
  border-radius: 50%;
  color: var(--purple);
  display: inline-flex;
  font-size: 27px;
  height: 72px;
  justify-content: center;
  margin-bottom: 20px;
  width: 72px;
}

.status-icon.success {
  background: #e6f5ee;
  color: #348367;
}

.status-icon.error {
  background: #fff0f2;
  color: #a45462;
}

.eyebrow {
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.auth-status-card h1 {
  color: var(--deep-purple);
  font-size: 31px;
  font-weight: 800;
  margin: 9px 0 15px;
}

.auth-status-card p {
  color: #6f657c;
  font-size: 16px;
  line-height: 1.7;
}

.btn-auth {
  background: var(--purple);
  border-radius: 7px;
  color: #fff;
  display: inline-block;
  font-weight: 800;
  margin-top: 18px;
  padding: 12px 22px;
}

.btn-auth:hover,
.btn-auth:focus {
  background: var(--deep-purple);
  color: #fff;
  text-decoration: none;
}

button.btn-auth {
  border: 0;
}

.auth-status-card .form-group {
  margin: 20px auto 0;
  max-width: 420px;
}

.auth-status-card .form-control {
  border: 1px solid #e6def4;
  border-radius: 7px;
  box-shadow: none;
  height: 48px;
}

.auth-secondary-link {
  color: var(--purple);
  display: block;
  font-weight: 800;
  margin-top: 22px;
}

@media (max-width: 600px) {
  .auth-status-card {
    padding: 36px 22px;
  }

  .auth-status-card h1 {
    font-size: 27px;
  }
}
