*{
    box-sizing:border-box;
}
body{
    font-family:Arial;
    background:url('background.gif');
    background-size: cover;
}
 
form{
    left:50%;
    top:50%;
    position:absolute;
    transform:translate(-50%,-50%);
    background:#262626;
    padding:20px 20px 80px 20px;
    text-align:center;
    border-radius:20px;
    width:350px;
}
img{
    width:140px;
    height:140px;
    border:5px solid dodgerblue;
    border-radius:50%;
    margin-top:20px;
    margin-bottom:20px;
 


}
.input-container{
    display:flex;
    width:100%;
    margin-bottom:15px;
}                                            
.joses-text h1{
    text-align: center;
    color: #fff;
}                                                                          

.icon{
    padding:10px;
    background:dodgerblue;
    color:#fff;
    min-width:50px;
    text-align:center;
}
.input-field{
    width:100%;
    padding:10px;
    outline:none;
    font-size:15px;
    outline: none;
    border: none;
}
.input-field:focus{
    border:2px solid dodgerblue;
}
.btn{
    background:dodgerblue;
    color:#fff;
    padding:15px 20px;
    border:none;
    cursor:pointer;
    width:100%;
    font-size:18px;
}
.btn:hover{
    background:orange;
}
