
*{
    margin: 0px;
    padding: 0px;
}
body
{
    background-image: url("bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0px;
    height: 100%;

}
#head
{
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 50px;
    text-align: center;
    color: rgb(0, 25, 166);
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(2px);
}
#box
{
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
}
#inp
{   
    padding: 50px;
    border-radius: 50px;
    background-color: rgba(195, 195, 195, 0);
    backdrop-filter: blur(6px);
    border: 8px solid transparent; 
    border: 4px solid rgba(0, 0, 0, 0.655);
}
#btn{
   padding: 10px;
   font-weight: 700;
   font-size: 15px;
   width: 140px;
   height: 50px;
   background-color: rgba(137, 137, 137, 0.553);
   border-radius: 10PX;
   border: 2px solid black;

}
#btn:hover
{
    background-color: rgba(44, 44, 44, 0.792);
    color: rgb(250, 250, 250);
}
.lbl
{
    text-align: center;
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    font-family: sans-serif;
}
.con
{
    
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.918);
    background-color: rgba(215, 128, 255, 0.497);
    border-radius: 15px;
}
.inp
{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    width: 90%;
    text-align: center;
    border: none;
    background-color: transparent;
    border-radius: 15px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font: 20px bold;
    font-weight: 800;
    color: rgb(0, 20, 82);
    font-family: sans-serif;
}
.inp::placeholder
{
    color: rgb(33, 33, 33);
}
.sym
{
    font-size: 20px;
    display: flex;
    width: 20%;
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px;
    background-color: rgba(39, 39, 39, 0.862);
    color: white;
    height: 50px;
    justify-content: center;
    align-items: center;
}
.con:hover
{
    border: 2px solid rgba(0, 0, 0, 0.982);
}
@media only screen and (max-width:1400px)
{
    body
    {
        background-image: url("bg.jpg");
        background-repeat: repeat;
        background-size:auto;
        margin-bottom: 0px;
        height: 100%;
    
    } 
    #head
    {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 30px;
    }
    #inp
    {   
    padding: 25px;
    }
    #btn
    {
        padding: 10px;
        font-weight: 600;
        width: 80px;
    }
    .lbl
    {
    font-size: 20px;
    }
    .inp
    {
    padding-left: 5px;
    font: 5px;
    }

}