body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #5f5d9c;
}

.profile-pic {
  text-align: center;
}

.profile-pic img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 0;
}

.login-container {
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%; /* Adjusted to be responsive */
  max-width: 400px; /* Added maximum width */
}

.login-container input[type="text"],
.login-container input[type="date"] {
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.login-container button {
  padding: 20px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-container button:hover {
  background-color: #0056b3;
}

/* Media Queries */
@media screen and (max-width: 600px) {
  .login-container {
    width: 300px;
    height: 400px;
    padding: 20px;
  }

  .profile-pic img {
    width: 80px; /* Adjusted for smaller screens */
    height: 80px; /* Adjusted for smaller screens */
    margin-bottom: 10px; /* Adjusted for smaller screens */
  }

  .login-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
  }
}
