@font-face {
    font-family: JetBrains;
    src: url("/fonts/JetBrainsMono-Regular.ttf");
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b1b1b; 
    height: 100vh;
    margin: 0;
    font-family: JetBrains;
}
h1 {
    color: #ffffffe3;
    font-family: JetBrains;
}
p {
    color: white;
}
#log-form {
    background: rgba(9, 9, 9, 0.8);
    padding: 30px;
    border-radius: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    width: 550px;
    text-align: center;
    transition: border-radius 1.0s;
    color: white;
}
#log-form:hover {
    border-radius: 64px;
}
.bg {
    border-radius: 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: border-radius 1.0s;
    background-position: 2px;
}
.bg:hover {
    border-radius: 64px;
}
input[type="email"], input[type="password"], input[type="sumbit"] {
    padding: 12px;
    margin: 4px 0;
    border-radius: 16px;
    color: black;
    border-style: solid;
    transition: background-color 1s;
}
input:hover {
    background-color: #ffffffd0;
}
.log-in {
    border-radius: 10px;
    border-style: solid;
    background-color: #ffffff00;
    border-color: white;
    color: white;
    font-family: JetBrains;
}