.form-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #ddd;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 110px;
  box-shadow: 0px 2px 5px #ccc;
  max-width: 500px;
}

label {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #555;
}

input[type="file"] {
  margin-bottom: 20px;
}

button {
  background-color: #4E2A84;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

button:hover {
  background-color: #4E2A84;
}

.circle {
  width: 200px;
  height: 200px;
  background-color: #4E2A84;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 1s ease-in-out;
}

.pulse {
  animation: pulse 1s ease-out infinite;
  }
  
  @keyframes pulse {
  0% {
  transform: scale(1);
  }
  50% {
  transform: scale(1.1);
  }
  100% {
  transform: scale(1);
  }
  }
