*{
    transition: 2s;
}
body{
    display:flex;
    margin: 0%;
    padding: 0%;
    justify-content: center;
    flex-direction: column;
    overflow-x: hidden;
    background-color: rgb(13, 0, 27);
    color: rgb(253, 229, 229);
    font-family: "DM Sans", sans-serif;
}
main{
    z-index: 2;
    align-self: center;
    max-width: 70vws;
    margin-top: 10vh;
    width: 70svw;
    justify-content: center;
}
#decoration{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  
    width: 400px;
    height: 400px;
    border-radius: 50%;
  
    background-color: rgb(114, 145, 192);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
form{
    display: flex;
    align-content: center;
    flex-direction: column;
    height: fit-content;
    gap: 20px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    padding-bottom: 40px;

}


h1{
    font-size: x-large;
    text-align: center;
}
h3{
    text-align: center;
}
.parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    align-items: center;
}



input, select {
    width: 100%;
    height: 6vh;
    padding: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: antiquewhite;
    border: 2px solid #47215e;
    border-radius: 10px;
}

i{
    scale: 1.5;
}

button{
    align-self: center;
    width: 50%;   
    height: 6vh;
    border-radius: 10px;
    background-color: #c7b6fa;
}


button.button-10 {
  touch-action: manipulation;
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
button.button-10 {
  touch-action: manipulation;
  font-weight: 600;
  color: #382b22;
  background: #c7b6fa;
  border: 2px solid #47215e;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.button-10::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e3d8fd;
  border-radius: inherit;
  box-shadow: 0 0 0 2px #a48be6, 0 0.625em 0 0 #e3d8fd;
  transform: translate3d(0, 0.75em, -1em);
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.button-10:hover {
  background: #e3d8fd;
  transform: translate(0, 0.25em);
}
button.button-10:hover::before {
  box-shadow: 0 0 0 2px #a48be6, 0 0.5em 0 0 #e3d8fd;
  transform: translate3d(0, 0.5em, -1em);
}
button.button-10:active {
  background: #e3d8fd;
  transform: translate(0em, 0.75em);
}
button.button-10:active::before {
  box-shadow: 0 0 0 2px #a48be6, 0 0 #e3d8fd;
  transform: translate3d(0, 0, -1em);
}


footer{
    margin-top: 40vh;
    display: flex;
    position: relative;
    height: 20vh;
    background-color: rgb(26, 0, 51);
    width: 100%;
    gap: 10px;
    padding: 10px;
    padding-left: 6vw;
    padding-top: 30px;
    z-index: 2;
    flex-direction: column;
}
footer a, footer p{
    color: white;
    width: fit-content;
    height: fit-content;
    margin: 0%;
    padding: 0%;
}
footer div{
    position: absolute;
    height: 10vh;
    background-color:rgb(26, 0, 51) ;
    transform: translate(-8vw, -10vh);
    width: 101%;
    border-radius: 100%;
}