/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #FF4300, #2C2C2C);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.login-box {
  background-color: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* LOGO */
.logo-container {
  margin-bottom: 20px;
}

.logo-container img {
  max-width: 120px;
  height: auto;
}

h1 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2C2C2C;
}

p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

form {
  text-align: left;
}

form label {
  font-size: 14px;
  color: #333;
  display: block;
  margin-top: 10px;
}

form input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

button {
  width: 100%;
  background-color: #FF4300;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.footer {
  text-align: center;
  margin-top: 15px;
}

.footer a {
  font-size: 13px;
  color: #FF4300;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}/* CSS Document */

