* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    margin-bottom: 0;
    font-family: Arial;
    background: linear-gradient(90deg, #78007c 0%, #00739c 100%);
    height: 100%;
}
#textbox{
width: 55%;
height:55px;
background-color: transparent;
border: none;
border-bottom:2px solid #ffffff;
text-align: center;
font-size: 17px;
color:#ffffff;
}
#textbox:focus{
outline:none;
}
#cont{
    color: #e0d8d8;
    width: 45%;
    min-height: 170px;
    background-color:#0000006e;
    backdrop-filter: blur(50px);
    border: 1px solid #0057ee;  
    border-radius: 15px;
    z-index: 1;

}
.usr{
    position: absolute;
    top: 25%;
    left: 27%;
}
.usr2{
    position: absolute;
    top: 42%;
    left: 27%;
}
#cont2 {
    width: 50%;
    max-height: 350px;
    overflow-y: auto;
    background-color: #0000006b;
    border: 1px solid #0057ee;
    border-radius: 15px;
    
}
#cont5 {
    width: 75%; 
    max-height: 200px;
    overflow-y: auto;
    background-color: #0000006b;
    border: 2px solid #0057ee;
    border-radius: 15px;
    
}
#gmen{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.adm{
    border: 1px solid black;
    border-collapse: collapse;
}

#btn{
    width: 25%;
    height: 50px;
    background-color: transparent;
    color:#ffffff;
    font-weight:bold;
    border:2px solid white;
    border-radius:30px;
    margin-bottom: 30 px;    
}
#log{
    width: 18%;
    height: 45px;
    background-color: transparent;
    color:#ffffff;
    font-weight:bold;
    border:2px solid white;
    border-radius:30px;
    margin-bottom: 30px;
}
@media (max-width: 810px){
    #cont{
        width: 93%;
    }
    #cont2{
        width: 93%;
    }
    #btn{
        width: 38%;
    }
    #log{
        width: 28%;
    }
}
#menu{
    background-color: #0000006b;
    border-bottom: 1px solid white;
    backdrop-filter: blur(15px);
    height:55px;
    width: auto;
    text-align: center;
    position:sticky;
    top: 0%;
    left: 0%;
    z-index: 100;
}
#men{
    width:23%;
    padding: 17px 0;
    text-decoration: none;
    font-weight: bold;
    color: white;
    float: left;
}
#php{
    display:inline;
}
#strona{
    width: auto;
    min-height: 100vh;
    display: flex;
    gap: 15px;
    flex-direction: column;
    background: linear-gradient(90deg, #78007c 0%, #00739c 100%);
    color: #ebebeb;
    align-items: center;
}
#strona > *:first-child{
    padding-top: 28px;
}

#footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color:white;
    background-color: #0000007b;
    clear:both;
    height:40px;
    text-align:center;
    border-top: 1px solid #0057ee;
    backdrop-filter: blur(30px);
    opacity:0.6;
    padding: 3px 3px;
    z-index: 10;
}
a {
    text-decoration: underline;
    color: white;
}                           
