body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*Login form*/
.form {
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 400px;
    border: 1px solid black;
    align-items: center;
    margin: auto;
    /* margin-top: 25px; */
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow:inset -5px -5px rgba(0,0,0,0.5);
    border-radius: 25px;
    /* margin-bottom:50px; */
    
    
}
.form h1{
    color:white;
    font-size: 2rem;
    border-bottom: 4px solid rgba(255,255,255,0.5);
    margin:50px;

}
/* Boxes */
.box{
    padding : 12px;
    margin:20px;
    width:65%;
    border:none;
    outline: none;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
    color:white;
    font-size: 1 rem;

}


.submit{
    padding: 10px,20px;
    margin-top:50px;
    width:50%;
    height:10%;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
    color:white;
    border:none;
    outline:none;
    border-radius: 20px;
    font-size: 1rem;
}
.submit:hover{
    cursor:pointer;
    background-color: rgba(255,255,255,0.1);
    color: white;

}
::placeholder{
    color:white;
    opacity:0.7;
}
.image{
    margin-top:50px;
}