body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #faf7f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-box {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  text-align: center;
  padding: 40px 30px;
  transition: 0.3s;
}

.login-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.logo {
  width: 150px;
  margin-bottom: 10px;
}


/* Auto adjust for smaller screens */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
        margin-left: 6px;
    }
}

h2 {
  color: #f48924;
  margin-bottom: 5px;
}

h3 {
  color: #777;
  font-weight: 400;
  margin-bottom: 25px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background: #fdfdfd;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #f48924;
  box-shadow: 0 0 6px rgba(244,137,36,0.3);
}

button {
  width: 100%;
  background-color: #f48924;
  border: none;
  padding: 12px 0;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #e47f1f;
}

.message {
  color: red;
  font-weight: 500;
  margin: 10px 0;
}

.links {
  margin-top: 20px;
  font-size: 14px;
}

.links a {
  color: #f48924;
  text-decoration: none;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

.links span {
  color: #aaa;
  margin: 0 8px;
}

