body{
    background-image: url(./images/Background3.jpg);
    background-size: 100% 100%;
}
.conatiner{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box{
    height: 400px;
    width: 400px;
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 0 20px white;
    background-image: url(./images/Background2.jpg);
    background-size: 100% 100%;   
}
.box form .welcome{
    text-align: center;
}
.box form .inputbox{ 
    margin-top: 20px;   
}
.box form input{
    width: 80%; 
    height: 30px;
    padding: 10px 15px 10px 45px;
    border-radius: 10px;
    box-shadow: 0 0 3px black;
    background-color: rgba(255, 255, 255, 0.5);
    /* background-image: linear-gradient(to right,rgb(0, 183, 255),rgb(0, 255, 136)); */
    margin-top: 20px;
    border: 0px solid black;
}
 
.box form input:focus , form input:hover {
    border: 0px solid black;
    background-color: white;
    background: white;
    box-shadow: 0 0 10px black;
    outline: none;
}
.box form img{
    height: 25px;
    width: 25px;
    position: absolute;
    transform: translateY(33px) translateX(10px);
    pointer-events: none;
}

.box button{
    height: 50px;
    width: 80%;
    margin-top: 50px;
    margin-left: 10%;
    border-radius: 20px;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: bolder;
    background-color: rgb(255, 255, 255);
    border: 0;
    box-shadow: 0 0 5px;
}

.box button:hover{
    box-shadow: 0 0 20px;
    background-color: aqua;
    cursor: pointer;
}