#blur {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
}

.signup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(20, 20, 20);
    border-radius: 1em;
}

#signup-form {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
#signup-form .padding {
    height: 3em;
}
#signup-form input {
    width: 60%;
    height: 3em;
    background-color: rgb(20, 20, 20);
    color: white;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: rgb(50, 50, 50);
}
#signup-form input:focus {
    outline: none;
    box-shadow: none;
}
#signup-form button {
    border: none;
    width: 60%;
    height: 2em;
    background-color: rgb(50, 50, 50);
    color: rgb(224, 224, 224);
    margin-top: 2em;
    border-radius: 50px;
    font-family: NotoSansBold;
    font-size: 1.2em;
    padding: 0;
    cursor: pointer;
    transition: background-color 250ms, box-shadow 250ms, color 250ms;
}
#signup-form button:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.5);
    color: rgb(20, 20, 20);
}

#signin-form {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
#signin-form .padding {
    height: 5em;
}
#signin-form input {
    width: 60%;
    height: 3em;
    background-color: rgb(20, 20, 20);
    color: white;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: rgb(50, 50, 50);
}
#signin-form input:focus {
    outline: none;
    box-shadow: none;
}
#signin-form button {
    border: none;
    width: 60%;
    height: 2em;
    background-color: rgb(50, 50, 50);
    color: rgb(224, 224, 224);
    margin-top: 4em;
    border-radius: 50px;
    font-family: NotoSansBold;
    font-size: 1.2em;
    padding: 0;
    cursor: pointer;
    transition: background-color 250ms, box-shadow 250ms, color 250ms;
}
#signin-form button:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.5);
    color: rgb(20, 20, 20);
}

#first-form {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
#first-form .padding {
    height: 5em;
}
#first-form input {
    width: 60%;
    height: 3em;
    background-color: rgb(20, 20, 20);
    color: white;
    border-width: 0;
    border-bottom-width: 2px;
    border-color: rgb(50, 50, 50);
}
#first-form input:focus {
    outline: none;
    box-shadow: none;
}
#first-form button {
    border: none;
    width: 60%;
    height: 2em;
    background-color: rgb(50, 50, 50);
    color: rgb(224, 224, 224);
    margin-top: 4em;
    border-radius: 50px;
    font-family: NotoSansBold;
    font-size: 1.2em;
    padding: 0;
    cursor: pointer;
    transition: background-color 250ms, box-shadow 250ms, color 250ms;
}
#first-form button:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.5);
    color: rgb(20, 20, 20);
}