@font-face {
    font-family: 'Poppins-Light';
    src: url('resource?resource=fonts/Poppins/Poppins-Light.ttf') format('truetype');
}

body {
    font-family: 'Poppins', 'Poppins-Thin', 'Poppins-ExtraLight', 'Poppins-Light', 'Poppins-Medium', 'Poppins-SemiBold', 'Poppins-Bold', 'Poppins-ExtraBold', 'Poppins-Black', sans-serif !important;
}

.bg svg {
    opacity: 0.6;
    position: absolute;
    top: -4em;
    left: -8em;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.fg {
    width: 100vw;
    height: 100vh;
}

.white-bg {
background-color: white !important;
}

.bg {
    position: fixed;
    z-index: -1000;
    width: 100vw;
    height: 100vh;
    transform: scale(0.9, 0.9);
    transform: translate(0%, 0%);
    stroke-width: 6;
}

@-webkit-keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

body {
    background-color: rgb(255, 255, 255);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

form {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    /* box-shadow: 1px 1px 5px gray; */
    border: solid;
    border-width: 1px;
    border-color: black;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 500px) {
    form {
        width: 500px;
    }
}

.form-signin {
    border: none;
    background: none;
}

.form-input {
    background-color: white !important;
    border: solid 1px rgb(155 165 179);
    border-radius: 5px;
    padding-left: 10px;

    outline: none;
    width: 90%;
    margin-top: 10px;
    height: 40px;
    font-size: 0.9em;
}


.form-input:focus {
    font-size: 0.9em;
    border: solid 2px lightgrey;
}

.submit {
    width: 90%;
    margin-top: 20px;
    border: rgb(155 165 179) solid 1px;
    background: none;
    /* background-image: linear-gradient(to right, #FF512F 0%, #F09819 51%, #FF512F 100%); */
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: black;
    display: block;
    border-radius: 35px;
    box-shadow: 1px 1px 2px var(--btn-shadow);
}

.submit:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: black;
    border: rgb(155 165 179) solid 1px;
}

.submit-contents {
    transition: ease-in-out 200ms;
}

#submit_svg {
    width: 1.5em;
    fill: black;
}

.submit-contents:hover {
    transform: translate(10px, 0px);
}

.submit .login-letters {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    font-weight: bold;
}

.bottom-message {
    color: gray;
    font-size: 0.6em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

.form-label.forgot-password {
    margin: .5rem 0;
}