body,
html {
    width: 100vw;
    height: 100vh;
    overflow: clip;
}
body {
    background: url("../Icons/background.jpg") no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#loginSpace {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    background: linear-gradient(45deg, #ffffff3e, #fff0);
}
#loginSpace .input-span {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.input {
    width: calc(100% - 1.5rem);
}
.button {
    width: 100%;
}
.label {
    align-self: flex-start;
    color: #58bc82;
    font-weight: 600;
}
.span {
    text-decoration: none;
    color: #707070;
}