html {
  box-sizing: border-box;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}


body, html {
  font-family: 'Inter', sans-serif;
  height: 100%;
  background: #eaeff4;
}

.background {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('bg-pattern.svg') repeat;
  opacity: 0.05;
  z-index: 1;
}



.login-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.logo img {
  max-width: 20%;
  margin-bottom: 15px;
}

h1 {
  font-size: 24px;
  color: #0d1b2a;
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  color: #555;
  font-size: 14px;
  margin-bottom: 30px;
}

.form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form button {
  width: 100%;
  padding: 14px;
  background: #0d1b2a;
  color: white;
  border: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form button:hover {
  background: #1b263b;
}

.extras {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

.extras a {
  color: #0d1b2a;
  text-decoration: none;
  font-weight: 500;
}

.extras a:hover {
  text-decoration: underline;
}
