body{
   background-size: cover;
   -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    width: 20%;
    margin: 180px auto 0;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 24px, 26px, 28px #000;
    text-align: center;
}

input[type="text"],
input[type="password"]{
 
     width: 100%;
     padding: 12px 20px;
     margin: 8px 0;
     box-sizing: border-box;
     border: 1px solid #ccc;
     border-radius: 4px;
     text-align: center;
}
button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ff5722;
    box-shadow: 0px 0px 20px 10px #ff5722;
}


.error {
    color: red;
}


footer {

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    color: #B84AFF;
    background-color: rgb(0, 0, 0, 0.5);


}

#createBy {

    color:#B84AFF;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;

}
#createBy:hover{

    color: rgba(255, 76, 76, 0.993);
}


i.fa-user {
    
    content: "\f007"; 
}

i.fa-lock {
    content: "\f084";
    
}

.input-group{

    position: relative;
}

.input-group i{

    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 20px;
}