@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500&display=swap');

html{
    color: white;
    font-family: Poppins;
}

.container{
    width: 1100px;
    margin: auto;
}

body{

    background: linear-gradient(180deg, #040404 0%, #222222 100%);
    background-attachment:fixed;
}

input {
    all: unset;
    text-align: left;
  }

.home{
    text-align: center;
    width: 600px;
    margin: 170px auto auto auto;
    padding: 20px;
}

.hometitle{
    font-size: 35px;
}

.loginpanel{
    margin-top: 1rem;
    height: 250px;
    background: rgba(63, 63, 63, 0.2);
    border: 1px solid #000000;
    border-radius: 29px;
    padding: 1rem;
}

.loginpaneltitle{
    font-size: 20px;
}

.login-input{

    margin-top: 2rem;
}

.inputpanel label{
    
    font-size: 18px;
    margin-right: 2rem;
}

.inputpanel input{
   
    margin-top: 1rem;
    width: 300px;
    padding: 10px;
    text-decoration: none;
    border: 0px solid;
    background: rgba(217, 217, 217, 0.26);
    border-radius: 3px;
}

.inputpanel:last-child label{
   margin-right: 100px;
}


.inputpanel input{
    color: white;
}

.inputpanel input:hover{
    border: 0px solid black;
}

.buttonpanel{
    margin-top: 1.5rem;
}

.buttonpanel button{
    border-radius: 6px;
    padding: 12px;
    background: white;
}

.footer{

    margin: 3rem auto auto auto;
    
}

.footer img{

    margin-top: -20px;
    transition: 2s;
    opacity: 0.3;    
    width: 90px;
}

.footer img:hover{
    opacity: 1;
    transition: 2s ease-in-out;
}

@media only screen and (max-width: 800px) {
    .container{
        width: auto;
        margin: auto;
    }

    .home{
        text-align: center;
        width: auto;
        margin: 20px auto auto auto;
        padding: 20px;
    }

    .loginpanel{
        margin: 50px auto auto auto;
        width: auto;
    }
    
    .loginpanel input{
        width: auto;
    }

    .buttonpanel{
        margin-top: 50px;
    }

    .loginpaneltitle{
        display: none;
    }

    .inputpanel{
        margin-top: 20px;
    }
    .inputpanel label{
        margin-right: 0px !important;
    }

    .footer{
        display: none;
    }
  }