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

body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: #1a2a80;
}
.header {
  display: flex;
  gap: 20px;
}
.container {
  background-color: #7a85c1;
  width: 400px;
  height: 400px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input {
  border: none;
  padding: 10px;
  border-radius: 3px;
  background-color: #b2b0e8;
}

.input:focus {
  outline: none;
}

.button {
  background-color: #3b38a0;
  color: white;
  padding: 10px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
}

.svg {
  width: 20px;
  height: 20px;
}

.image {
  width: 300px;
  height: 300px;
}
