* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-image: url("{% static 'images/login.jpg' %}");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85); /* Transparent white background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

div.container div.myform {
  width: 300px;
  margin-right: 40px;
}

div.container div.myform h2 {
  color: #00563B;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

div.container div.myform input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 10px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-size: 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

div.container div.myform input:focus {
  background-color: #eaeaea;
}

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

div.container div.myform button:hover {
  background-color: #4CAF50;
}

div.container div.myform p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;

}

div.container div.myform a {
  color: #00563B;
  text-decoration: none;
}

div.container div.myform a:hover {
  text-decoration: none;
  color: #4CAF50;
}

div.container div.image img {
  width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
