*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/love.jpg");
    position: fixed;
    background-repeat: no-repeat;
    background-position: cover;
    background-size: cover;
}
.login-form{
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: 0 0 20px #fff;
    padding: 20px 40px;
    border-radius: 20px;
    width: 350px;
}
.login-form h1{
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase ;
    font-weight:bold;
    color: #fff;
    font-size: 40px;
}
.login-form input{
    margin-top: 20px;
    padding: 8px 12px;
    width: 100%;
    border-radius: 15px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    box-shadow: 0 0 5px #fff;
    transition: box-shadow 0.3s ease;
}
.login-form input:focus{
      box-shadow: 0 0 20px #fff;
}
.login-form input::placeholder{
    color: #fff;
    font-size: 12px;
}
.login-form .btn{
    text-align: center;
}
.login-form button{
    max-width: fit-content;
    color: white;
    background: transparent;
    box-shadow: 0 0 5px #fff;
    padding: 5px 15px;
    border-radius: 15px;
    border: none;
    outline: none;
    margin: 40px ;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: box-shadow .3s ease;
}
.login-form button:hover{
    box-shadow: 0 0 20px #fff;
}








@media (max-width:575.99px){
.login-form{
    padding: 15px 30px;
    width: 250px;
}
}