@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,800;1,100;1,300;1,400;1,900&display=swap');
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;}

html{
    
    overflow-x: hidden;
    }
    
html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background-color: #0e0d0d;
}

html::-webkit-scrollbar-thumb{
    background-color: #4077ee;
    border-radius: 8px;
}
  
header{
    text-decoration: none;
    background-color: #283742 ;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    position: sticky;

    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
    transition: 0.7s ease;
  }
.logo{
    text-decoration: none;
    color: #339AE6;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;}
.navigation a{
    color: #339AE6;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 30px;}
.navigation a:hover{
    color: #4115AD;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgb(131, 132, 182);
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 30px;
    color: white;
}
.menu a:hover{
    background-color: gray;
}
.nav{
    display: flex;
    max-height: 0%;
    transition: max-height .5s ease-out;
}
.hamb{
    cursor: pointer;
    float: right;
}/* Style label tag */

.hamb-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none
} /* Hide checkbox */

.side-menu:checked ~ .nav{
    max-height: 100%;
    color: #1d1e8f;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

section{
  background: url("https://e1.pxfuel.com/desktop-wallpaper/966/456/desktop-wallpaper-login-page-login.jpg") no-repeat;

  background-size: cover;
  background-position: center;
  justify-content: center;
  
}
.main{
    justify-content: center;
}
.card-login{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    height: 400px;

    
        /* From https://css.glass */
        background: rgba(255, 255, 255, 0.33);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
}

    .btn-container button{
      border-radius: 10px;
      padding: 5px 3px;
  background-color: rgb(20, 125, 245);
}
.content-wrapper{
  display: flex;
  align-items: center;

}
.logo-wrapper img{
  width: 30px;
  border-radius: 3px;
  margin: 3px;
}

.text-container span{
  color: white;

}

#google-btn{
    display: none;
}

#profile-content img{
    border-radius: 50%;
    margin-bottom: 50px;

}
#profile-content{
}
#profile-content button{
    margin-top: 50px;
    background-color: white;
    padding: 10px 20px;

    border-radius: 20px;
}
.auth-info{
    text-align: start;
    margin:0 15px ;
}
.auth-info span{
    color: rgb(20, 125, 245);
}