
.submit{
    width:100%;
    display: flex;
    justify-content: center;
}
.outer-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 8rem);
}
.container {
    min-width: 500px;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    padding: 1rem;
    backdrop-filter: blur(20px);
    border: solid 1px;
    display: flex;
    /* position: absolute; */
    /* left: 25vw; */
    /* top: 20vh; */
    width: 50vw;
    height: 60vh;
    flex-direction: column;
    align-items: center;
}
input, select {
    padding:.5rem;
    border-radius: .2rem;
    width: 100%;
    height: 4vh;
    border: solid 1px black;
    background: transparent;
    /* border-block-style: revert; */
    color: black;
    font-size: 1.2rem;
}
select{
    /* opacity: .7; */
    width:100%;
}
::placeholder {
    color: black;
    opacity: 0.7; /* Firefox */
  }
option {
    display: flex;
    color: black;
    white-space-collapse:collapse;
    text-wrap: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}
.container h1{
    text-align: center;
}
.inner-container {
    font-size: 1.5rem;
    min-width: 300px;
    display: flex;
    color: black;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
    align-items: flex-start;
}
label{
    color:rgb(0, 0, 0);
}
.innermost-container{
    gap:.5rem;
    display: flex;
    flex-direction: column;
}
button {
    /* border: solid white; */
    width: 18vw;
    height: 5vh;
    border-radius: .5rem;
    border: solid 1px;
    background: #000000ad;
    color: aliceblue;
    font-size: 1.2rem;
    cursor: pointer;
}
button:hover{
    transform: scale(1.1);
    transition: all .2s ease-in-out;
}

@media screen and (max-width: 700px) {
    .container{
        height: 40vh;
    }
  }