* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: #030a12;
  color: #f7fbff;
  font-family: "Inter", Arial, sans-serif;
}

.login-container {
  width: 100%;
  max-width: 430px;
  padding: 40px;
  background: #071321;
  border: 1px solid #183552;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
}

.logo-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #2f86ff;
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
}

.login-logo h1 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
}

.login-logo h1 span {
  color: #2f86ff;
}

.login-logo p {
  margin: 2px 0 0;
  color: #9bb0c4;
  font-size: 0.85rem;
}

.login-heading h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.5rem;
}

.login-description {
  margin: 0 0 26px;
  color: #9bb0c4;
  line-height: 1.6;
}

form {
  display: grid;
  gap: 10px;
}

label {
  color: #a9bed1;
  font-size: 0.9rem;
}

input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #1c3a54;
  border-radius: 12px;
  outline: none;
  background: #020a12;
  color: #ffffff;
  font: inherit;
}

input::placeholder {
  color: #74899b;
}

input:focus {
  border-color: #2f86ff;
  box-shadow: 0 0 0 3px rgba(47, 134, 255, 0.14);
}

button {
  width: 100%;
  height: 46px;
  margin-top: 10px;
  border: 0;
  border-radius: 12px;
  background: #2f86ff;
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #4a96ff;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

#statusMessage {
  margin-top: 18px;
  line-height: 1.5;
}

.success {
  color: #6fe79a;
  text-align: center;
}

.error {
  color: #ff7373;
  text-align: center;
}

.login-footer {
  margin-top: 28px;
  text-align: center;
}

.login-footer a {
  color: #68aeff;
  text-decoration: none;
  font-size: 0.9rem;
}

.login-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  body {
    padding: 16px;
  }

  .login-container {
    padding: 28px 22px;
    border-radius: 20px;
  }
}
.login-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}

.login-logo-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;

    filter:
        drop-shadow(0 0 18px rgba(0,162,255,.35));
}

.login-logo-text h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.login-logo-text span {
    color: #1e90ff;
}

.login-logo-text p {
    margin-top: 8px;
    color: #9ca3af;
    font-size: .95rem;
}