@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Share+Tech+Mono&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
    margin: 0 auto;
    background-color: #0f0f0f;
    font-family: "Share Tech Mono", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: 600px;
    transition: 0.40s;
    backdrop-filter: blur(3px);
    background-image: url('../image/matrix.gif');
}
.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    background-color: #0b100d;
    padding: 30px;
    border-radius: 5px;
    width: 30%;
}
.login-titulo {
    color: #ededed;
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
}
.login-subtitulo {
    color: #ededed;
    text-align: center;
}
.formulario {
    background: #141a16;
    width: 100%;
    border: none;
    color: #00dd45;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 60px;
    box-sizing: border-box;
    font-size: 20px;
    font-family: "Share Tech Mono", serif;
}
.formulario:focus {
    outline: 0;
}
.botao-p {
    background-color: #141a16;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 60px;
    width: 100%;
    border: none;
    color: white;
    font-size: 20px;
    font-family: "Share Tech Mono", serif;
    cursor: pointer;
    transition: 0.50s;
}
.botao-p:hover {
    background-color: #222a25;
}
.logo-img {
    height: 95px;
    animation: 1s linear scale;
}
.erro-login {
    color: #d9144e;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    display: none;
}
form {
    width: 100%;
}
@keyframes scale {
    0% {
        scale: 0%;
        filter: blur(10px);
    }
    100% {
        scale: 100%;
        filter: blur(0px);
    }
}
@media only screen and (max-width: 800px) {
    .login-box {
        width: 75%;
        height: 500px;
    }
    .login-titulo {
        font-size: 18px;
    }
    .login-subtitulo {
        font-size: 13px;
    }
}