@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #c9d1d9  ;
}
body{
    background-color: #0d1117;
}
.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrap{
    margin-top: 30px;
    width: 300px;
    
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 56px;
    height: 56px;
}
.signin{
margin-top: 15px;
}
.signin .header{
    text-align: center;
    width: 100%;
    font-size: 22px;
    padding: 5px 0px;
}
.input-field{
    background-color: #161b22;
    border-radius: 6px;
    padding: 15px;
    border: 1px solid #21262d;
    margin-top: 10px;
}
.input-field input{
    margin-top: 5px;
    background-color: #0d1117;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #21262d;
    height: 32px;
}
label{
    font-size: small;
}
.context{
    margin-top: 5px;
    width: 100%;
}
.pass{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.forgot{
    font-size: 12px;
    color: #58a6ff;
    padding: 0px 0px 0px 90px;
    cursor: pointer;
}
.context button{
    width: 100%;
    height: 32px;
    color: white ;
    border-radius: 6px;
    background-color: #238636;
    margin-top: 15px;
    border: none;
}
.new{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border: 1px solid #2c3239;
    border-radius: 6px;
    height: 55px;
    font-size: small;
}
.create{
    color: #58a6ff;
    padding: 0px 0px 0px 3px;
}
.nav{
    margin-top: 80px;
}
ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
ul li{
    list-style: none;
    outline: none;
    font-size: 12px;
}
ul li a {
    text-decoration: none;
    color: #58a6ff;
}
ul .contact{
    color: #8b949e;
}