*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.login-box{
    background-image: url(./images/sign-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}
.containor{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10%;
    left: 40%;
    border:3px solid rgb(0, 0, 0);
    padding: 20px 0 ;
    width: 25em;
    border-radius: 20px;
    box-shadow: 8px 8px 10px rgba(255, 255, 255, 0.416);
    background-color: rgba(219, 219, 219, 0);
    backdrop-filter: blur(1px);
    /* color: aliceblue; */
    color: rgb(255, 255, 255);
    animation: move 1s linear;
}
.containor h1{
    padding: 10px;
    font-weight: 900;
}
p{
    padding: 10px;
    font-weight: 500;
    font-size: 18px;
}
p a{
    color: rgb(10, 88, 246);
}
p a:visited{
    color: rgb(10, 88, 246);
}
p a:active{
    color: #ffffff;
}
.input{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 10px 0;
    margin-left: -10px;
}
.input label{
    padding: 10px 0 0 0;
    font-weight: 700;
    color: rgb(255, 255, 255);
}
.input input{
    border: none;
    outline: none;
    background: none;
    border-bottom: 3px solid rgb(255, 255, 255);
    width: 20em;
    padding: 5px 0;
}
.btn{
    display: inline;
    padding: 15px 10px;
    
}
.btn button{
    padding: 12px 7em;
    font-size: 15px;
    font-weight: 900;
    border-radius: 5px;
    border: none;
    /* background-color:rgba(20, 63, 255, 0.096); */
    /* backdrop-filter: blur(5px); */
    background-color: rgb(27,44,68);
    color: aliceblue;
    transition: all 0.2s linear;
} 
.btn button:hover{
    background-color: rgb(251,197,102);
    background-color: rgba(251, 165, 185, 0.343);
}
.btn button a{
    text-decoration: none;
    color: aliceblue;
    padding: 5px;
    word-spacing: 5px;
    letter-spacing: 1px;
    color: #ffffff;
}
.icons{
    display: flex;
    justify-content: center;
    align-items: center; padding: 10px 0;
}
.pp{
    text-align: center;
    padding: 10px 0;
}
.icons i{

    width: 40px;
    height: 20px;
    font-weight: 900;
    font-size: 25px;
}
@keyframes move {
    from{
        transform: translateX(100px) translateY(100px);
        opacity: 0;

    }
    to{
        transform: translateX(0px) translateY(0px);
        opacity: 1;

    }
    
}