@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background: url('image.png') 50% 50% no-repeat;
    background-size: cover;
    display: table;
}

.signin {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 3em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    backdrop-filter: blur(10px);
}

h2 {
    font-family: 'Yusei Magic', sans-serif;
    font-weight: lighter;
    color: #fff;
    font-size: 50px;
    text-align: center;
    margin-top: 0px;
}

input {
    display: block;
    width: 320px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-family: 'Yusei Magic', sans-serif;
    font-weight: lighter;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left:10px ;
    border-radius: 5px;
    color: #fff;
}

button {
    width: 332px;
    height: 50px;
    font-size: 16px;
    background: #000;
    font-weight: lighter;
    color: #fff;
    border: 0px;
    border-radius: 5px;
}