* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  color: #fdcffa;
  text-align: center;
  margin: 25px 0;
}
body {
  background-color: #4e56c0;
}
.container {
  background-color: #d78fee;
  border: 3px solid black;
  max-width: 900px;
  margin: auto;
  border-radius: 9px;
  padding: 25px;
}
.input-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 9px;
  font-weight: bold;
  align-self: center;
}
.input-form span {
  padding: 5px;
}
.output {
  display: none;
  padding-top: 25px;
}
.error {
  display: none;
  padding-top: 25px;
}

.alan-sans {
  font-family: "Alan Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 750;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* Input box starts*/
.input-form {
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  padding: 20px;
  background: #fdcffa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.title {
  color: var(--font-color);
  font-weight: 900;
  font-size: 20px;
}

.title span {
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 17px;
}

.input {
  width: 250px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  /* background-color: var(--bg-color); */
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.input:focus {
  border: 2px solid var(--input-focus);
}

.button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}

.button-confirm {
  margin: 25px 0 0 0;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
}
/* Input box ends*/

footer {
  border: 3px solid black;
  text-align: center;
  margin: 15px 0;
  background-color: black;
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1rem;
  font-weight: bolder;
  font-size: larger;
  justify-content: center;
  color: #4e56c0;
  align-items: center;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  background-color: #fdcffa;
}
footer img {
  margin-left: 5px;
  margin-right: 5px;
  height: 25px;
}
