@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 20% 20%, #18354d, #0d1520 42%);
  color: #e7edf5;
}

.login-page {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #2a3c51;
  background: linear-gradient(180deg, #132231, #101b29);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

h1 {
  margin: 0;
  font-size: 28px;
}

.sub {
  margin: 10px 0 20px;
  color: #9bb0c7;
  font-size: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  color: #9bb0c7;
  font-size: 13px;
  font-weight: 600;
}

input {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #2a3c51;
  background: #0d1724;
  color: #e7edf5;
  font-size: 14px;
  padding: 0 12px;
  outline: none;
}

input:focus {
  border-color: #3ad8bf;
  box-shadow: 0 0 0 3px rgba(58, 216, 191, 0.2);
}

button {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(120deg, #27c2a8, #1d8dbe);
  color: #04222d;
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.msg {
  margin: 12px 0 0;
  min-height: 20px;
  color: #9bb0c7;
  font-size: 13px;
}
