/* Base */
body {
  margin: 0;
  padding: 0;
  background-color: #0b1221;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  width: 380px;
  text-align: center;
}

.logo {
  width: 90px;
  margin-bottom: 15px;
}

h2 {
  margin-bottom: 25px;
  color: #00c6ff;
  font-weight: 600;
}

/* Inputs */
form input,
form select {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 15px;
  background: #e1f5fc;
  color: #10182f;
  font-size: 15px;
  box-sizing: border-box; /* ✅ এই লাইনটাই মূল fix */
}

form input:focus,
form select:focus {
  outline: none;
  background: #e0e0e0;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  background: #00c6ff;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #00a3d4;
}

/* Links */
.links {
  margin-top: 15px;
}

.links a {
  color: #00c6ff;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}
