body{
    margin: 0;
    display: flex;
    height: 100vh;
    background-color: black;
    /* flex-direction: column; */
    background-image: url("https://cdn.pixabay.com/photo/2017/08/26/10/13/construction-2682641_1280.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
}
.card{
    /* margin:auto;  */
    /* margin-top: 15%; */
    display: flex;
    text-align:center; 
    /* background-color: green; */
    background: rgba( 255, 255, 255, 0.1 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 10px );
    -webkit-backdrop-filter: blur( 10px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    width: 50%;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
}

.logo{
    border-radius: 12px;
     width: 30%;
     padding: 15px;
    background-color: white;
}
form{
    margin: auto;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 50%;
    justify-self: center;
}
form input{
    height: 40px;
    text-align: center;
    border-radius: 20px;
}
form button{
    height: 40px;
    background-color: red;

    color: white;
    border-radius: 20px;

    font-weight: bolder;
    font-size: 18px;
}
