*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
    color: rgb(255, 255, 255);
}

body{
    background-image: url("assets/pikaso_embed.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    line-height: 30px;
}
.container{
    display: flex;
    width: 35%;
    height: 200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
    background-color: rgba(127, 255, 212, 0.378);
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(27, 27, 27);
    margin-top: 10%;
    margin-left: 32%;
}

input{
    padding-left: 10px;
    border-radius: 10px;
    border: none;
    width: 60%;
    background-color:rgba(242, 150, 12, 0.41);
}
select{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 8px;
    border-radius: 10px;
    display: inline-flex;
    border: none;
    height: 50px;
    background-color:rgba(255, 222, 173, 0);
}
label{
    margin-right: 10px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    font-weight: 900;
}
option{
    color: black;
}
.form-group{
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1140) {
    .form-group{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}