.info {
    color: rgb(200, 23, 23);
    font-size: 15px;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 10px;
    margin-right: 55px;
    margin-left: 55px;
    text-align: center;
}

#log-reg-logo {
    position: relative;
    background-image: url(/res/images/logo0.png);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    width: 100px;
    height: 100px;
    margin-top: 60px;
    margin-bottom: 30px;
}

textarea::-webkit-scrollbar {
    display: none;
}

textarea {
    border: none;
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
    resize: none;
}

[password] {
    -webkit-text-security: disc;
}

::placeholder {
    color: rgb(170, 170, 170);
    opacity: 1;
}

body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(33, 37, 48, 1);
}

@keyframes shadow {
    0% {
        box-shadow: 0px 0px 15px 5px rgb(130, 204, 253);
    }

    50% {
        box-shadow: 0px 0px 15px 5px rgb(35, 77, 124);
    }

    100% {
        box-shadow: 0px 0px 15px 5px rgb(130, 204, 253);
    }
}

@keyframes bganim {
    0% {
        box-shadow: 0px 0px 100px 150px rgb(44, 45, 66);
    }

    50% {
        box-shadow: 0px 0px 100px 150px rgb(36, 43, 66);
    }

    100% {
        box-shadow: 0px 0px 100px 150px rgb(44, 45, 66);
    }
}

.bganim {
    width: 100vw;
    animation: bganim 4s infinite;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}

input:-webkit-autofill {
    -webkit-text-fill-color: rgb(170, 170, 170) !important;
}
html {
    height: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
    overflow-x: hidden;
}

* {
    user-select: none;
    line-height: 1.6;
    margin: 0;
    padding: 0
}

*:focus {
    outline: none;
}