
form{
    overflow: visible;
}
.body-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    overflow: visible;
}
.messageDiv{
    font-size: 32px;
    font-weight: 900;
    overflow: visible;
}
.container{
    width: 600px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    margin: 25px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    overflow: visible;
    gap: 40px;
    backdrop-filter: blur(.5rem);    
    border: .25vh solid rgb(189, 253, 246);
}
.container div{
    overflow: visible;
}
.container h1{
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    overflow: visible;
}
.container form{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: visible;
    gap: 40px;
}
.container form h1{
    font-weight: 900;
}
.switch-text{
    display:flex; 
    justify-content:center; 
    align-items: center; 
    gap: 10px; 
    font-size:24px; 
    font-weight: 500; 
    color: white;
}
.switch-text button{
    font-size:24px; 
    font-weight: 500; 
    color: rgb(189, 253, 246); 
    background: none; 
    outline: none; 
    border:none; 
    cursor: pointer;
}
.field{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.field h2{
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
}
.text-box{
    width: 80%;
    height: 50px;
    padding: 5px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.text-box input{
    width: 100%;
    height: 100%;
    color: white;
    text-align: left;
    margin: 0 5px;
    font-size: 32px;
    background: none;
    text-decoration: none;
    outline: none;
    border: none;
    text-emphasis: transparent;
    font-weight: 700;
}
.text-box input::placeholder{
    color: rgba(255,255,255,0.5);
}
.button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50px;
    padding: 5px;
    background-color: rgba(24, 31, 149, .5);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    transition: 0.25s;
}
.button button{
    cursor: pointer;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    font-size: 28px;
    background: none;
    text-decoration: none;
    outline: none;
    border: none;
    text-emphasis: transparent;
    font-weight: 700;
}
button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    font-size: 32px;
    background: none;
    text-decoration: none;
    outline: none;
    border: none;
    text-emphasis: transparent;
    font-weight: 700;
    font-size:18px; 
    color: rgba(255, 255, 255, 0.5); 
    text-align:center;
    text-decoration: underline;
}
.button:hover{
    height: 70px;
}
.filter-sorting{
    width: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.filters h1{
    height: 100%;
    color: white;
    text-align: center;
    font-size: 32px;
    background: none;
    text-decoration: none;
    outline: none;
    border: none;
    text-emphasis: transparent;
    font-weight: 700;
    font-size:18px; 
    color: rgba(255, 255, 255, 0.5); 
    text-align:center;
}
select{
    cursor: pointer;
    height: 100%;
    color: white;
    text-align: left;
    font-size: 32px;
    background: none;
    text-decoration: none;
    outline: none;
    border: none;
    text-emphasis: transparent;
    font-weight: 700;
    font-size:18px; 
    color: rgba(255, 255, 255, 0.75); 
}
.filters, .sorting{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}
@media only screen and (min-width: 767px) {

}
@media only screen and (max-width: 767px) {
.container{
    width:80%;
}
.container h1{
    font-size: 36px;
}
.field h2{
    font-size: 16px;
}
.filters h1{
    font-size: 16px;
}
.switch-text{
    font-size:16px; 
}
.switch-text button{
    font-size:16px; 
}
.text-box input{
    font-size: 24px;
}
.button input{
    font-size: 24px;
}
.button button{
    font-size: 24px;
}
}