

.login-form{
    border: 1px solid black;
    width: 400px;
    height: 500px;
    background: url(./bckgnd.jpg_large);
    color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 75);
    background-size: cover;
    background-position: center;
    overflow: hidden;
   position: relative;
   left: 50%;
   transform: translate(-50%);
    
}
form{
    display: block;
    box-sizing: border-box;
    padding: 40px 10px;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(40%);
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-position: center;
}
h1{
    font-weight: normal;
    font-size: 24px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
}
label{
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;

    margin-left: 75px;
}
input{
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding: 0px 35px;
    border: none;
    margin-top: 5px;
    margin-bottom: 20px;
    color: white;
}
button{
    background: rgb(66, 219, 46);
    height: 40px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 40px;
    border-radius: 40px;
    border: none;
    margin: 10px 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
}
button:hover{
    color: rgb(243, 227, 0);
}