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

.container {
  background-color: #f5f3eb;
  width: 400px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  border: 1px solid #ccc;
}

.container .header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.container .header img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.container .header h1 {
  font-size: 22px;
  font-weight: bold;
  color: #003366;
}

.container form {
  margin-top: 20px;
}

.container label {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  text-align: left;
  color: #003366;
}

.container input[type="email"],
.container input[type="password"],
.container input[type="text"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #f9f9f9;
}

.container input[type="email"]:focus,
.container input[type="password"]:focus,
.container input[type="text"]:focus {
  border-color: #003366;
}

.container button {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.container button:hover {
  background-color: #002244;
}

.container .footer {
  margin-top: 15px;
}

.container .footer a {
  color: #003366;
  text-decoration: none;
  font-size: 14px;
}

.container .footer a:hover {
  color: #0066cc;
}
