@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --bg-prim: rgb(40, 40, 40);

    --font-prim: rgb(255, 255, 255);

    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

body {
    background-color: var(--bg-prim);
    
    color: var(--font-prim);
    font-size: 2rem;

    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100dvh;
}

h1,
p {
    margin: 0;
    padding: 0;
}

.backdrop {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    filter: blur(1000px) saturate(1.5) brightness(0.5);

    z-index: -1
}

main {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 2rem;
    border: 0.2rem solid var(--font-prim);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16rem;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottomleft {
    display: flex;
    height: max-content;
    align-items: center;
}

.bottomright {
    display: flex;
    align-items: center;
    height: 100%;
}

.bottomleft hr {
    height: 2rem;
    width: 0rem;
    border: 0.1rem solid var(--font-prim);
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login {
    padding: 2rem;
}

img.logo {
    width: 25rem;
}

input {
    background-color: transparent;
    border: none;
    color: white;
    border: 0.1rem solid var(--font-prim);
    border-radius: 1rem;
    padding: 1rem;
    width: 25rem;
    margin: 2rem 0 0 0;
}

button {
    background-color: rgba(0, 0, 255, 0.25);
    border: none;
    color: white;
    border: 0.1rem solid var(--font-prim);
    border-radius: 1rem;
    padding: 1rem;
    width: 27rem;
    margin: 2rem 0 0 0;
    cursor: pointer;
}

.right a,
.right p {
    margin: 1rem 0 0 0;
}

p a {
    text-decoration: underline;
}