body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black;

}

.login{
    border: 1px solid white;
    width: 400px;
    height: 500px;
    background: url(red-1188345_1280.jpg);
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgb(255, 255, 255);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
form{
    display: block;
    box-sizing: border-box;
    padding: 40px;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(30%);
    flex-direction: column;
    display: flex;
    gap: 10px;
}
h1{
    color: white;
    font-weight: normal;
    font-family: sans-serif;
    font-size: 24px;
    text-shadow: 0 0 10px rgb(255, 255, 255);
    margin-bottom: 60px;
}

label{
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 4px;
    padding-left: 10px;
    font-family: monospace;
}
input{
    background: rgba(246, 244, 200, 0.709);
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    border:1px solid white;
    margin-bottom: 20px;
    color: black;
}
button{
    background-color: rgba(80, 245, 34, 0.927);
    height: 40px;
    line-height: 40px;
    border: 1px solid;
    border-radius: 10px;
    margin: 10px 0px;
    box-shadow: 0px 0px 10px white;
    color: white;
}

