*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.head{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:1rem;
}
.dots{
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
}
.pack2{
    display: flex;
    justify-content:center;
    align-items:center;
}
#d1{
    height:2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aquamarine;
    border-radius:50%;
    transform: scale(1.3);
    border:1px solid gray;
}
#d2{
    height:2rem;
    width:2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 127, 153);
    border-radius:50%;
    transform: scale(1.3);
    border:1px solid gray;
}
#d3{
    height:2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(217, 255, 127);
    border-radius:50%;
    /* position: relative;
    bottom:0.45rem; */
    transform: scale(1.3);
    border:1px solid gray;
}

.title{
    margin-left:1.2em;
    font-size:1.6rem;
}

.box{
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top:1.5rem;
   margin-bottom: 2rem;
}

#log-container{
  width:85%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: ghostwhite;
  border:1px solid rgb(20, 81, 147) ;
  padding:2rem;
}

.part{
    /* background-color:greenyellow; */
    width: 80%;
    height: 80%;
    padding:1rem;
}
#log-container .part input{
    width: 100%;
    height: 100%;
    margin-top:0.5rem;
    margin-bottom: 0.5em;
    padding:0.6rem;
    outline: none;
    font-weight:300;
    border-radius: 3px;
    border:1px solid rgb(215, 211, 211);
}

#log-container .part input:hover{
    border:2px solid rgb(20, 81, 147);
    transform: translateX(1rem);
}
#star{
    color:rgb(251, 27, 31);
    font-weight: bolder;
    margin-left: 3px;
    font-size:1.3rem;
}

label{
    font-size:1.2rem;
    font-weight: bold;
}

.msg{
   font-size:1.1rem;
   color: crimson;
   display: none;
}
#log{
    padding:0.5rem;
    padding-left:1.8rem;
    padding-right:1.8rem;
    margin-top:0.5rem;
    outline:none;
    border:0;
    /* font-size:16px;
    font-weight:700; */
}
#log:hover{
    transform: scale(1.1);
    font-weight: bold;
    color: #fff;
    background-color: rgb(20, 81, 147);
}
#forgot{
    font-weight: bold;
    font-size:1.1rem;
}
#forgot a{
    text-decoration: none;
    color:purple;
}
#forgot a:hover{
    font-size:1.2rem;
    color: plum;
}
.fa-lock{
    margin-right:15px;
}

#part1{
   display: flex;
   align-items: center;
}

#new{
    font-weight: 600;
    font-size:18px;
}
#sign{
    text-decoration: none;
    background-color: bisque;
    padding:10px;
    padding-left:20px;
    padding-right:20px;
    margin-left:15px;
    font-size:1.05rem;
    border-radius:10px;
}

.fa-sign-in-alt{
    margin-right:5px;
}

#sign:hover{
    transform: scale(1.1);
    color: #fff;
    background-color: cadetblue;
}

@media (max-width:360px) {
    #part1{
        flex-direction: column;
        justify-content: start;
        align-items:flex-start;
    }
    #sign{
        margin-top:5px;
    }
}

@media (min-width:1024px) {
    form{
        box-shadow:1px 1px 8px 2px rgb(171, 169, 169);
    }
    .title font{
        font-size: 1.8rem;
        font-weight: 500;
    }
    label{
        font-size:1.4rem;
    }
    #forgot{
        font-size:1.4rem;
    }
    #new{
        font-size: 1.4rem;
    }
    .msg{
        font-size:1.2rem;
        font-weight: 700;
        margin-left: 25px;
    }
    #log-container .part input{
        padding:0.8rem;
        border-radius:5px;
        color:gray;
        font-size:1.05rem;
    }
    #log{
        transform: scale(1.2);
        margin-left:10px;
        font-size:1.05rem;
        outline:0.6px gray;
        outline-style: double;
    }
    #sign{
        font-size:1.05rem;
        background-color: blueviolet;
        color: #fff;
    }
    .part{
        display: flex;
        justify-content:left;
        align-items: center;
    }

}