@import url("https://fonts.googleapis.com/css2?family=Mouse+Memoirs&display=swap");
body,
html {
    height: 100%;
    /*font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;*/
}

h2 {
    font-family: Mouse-500;
}

html,
body {
    height: 100vh;
}
.wrapper {
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(
        124deg,
        #9a3412 ,
        #3f6212,
        #065f46,
        #92400e,
        #115e59,
        #3730a3,
        #075985,
        #292524,
        #9f1239
    );
    background-size: 1800% 1800%;

    -webkit-animation: rainbow 18s ease infinite;
    -z-animation: rainbow 18s ease infinite;
    -o-animation: rainbow 18s ease infinite;
    animation: rainbow 18s ease infinite;
}

@-webkit-keyframes rainbow {
    0% {
        background-position: 0% 82%;
    }
    50% {
        background-position: 100% 19%;
    }
    100% {
        background-position: 0% 82%;
    }
}
@-moz-keyframes rainbow {
    0% {
        background-position: 0% 82%;
    }
    50% {
        background-position: 100% 19%;
    }
    100% {
        background-position: 0% 82%;
    }
}
@-o-keyframes rainbow {
    0% {
        background-position: 0% 82%;
    }
    50% {
        background-position: 100% 19%;
    }
    100% {
        background-position: 0% 82%;
    }
}
@keyframes rainbow {
    0% {
        background-position: 0% 82%;
    }
    50% {
        background-position: 100% 19%;
    }
    100% {
        background-position: 0% 82%;
    }
}

.login-page {
    display: flex;
    min-height: 100vh;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
}

.login-headline h3 {
    margin: 0 0 25px;
    color: #505050;
    font-size: 25px;
    font-weight: 400;
}

.login-area {
    background-color: white;
    overflow-y: hidden;
    min-height: 600px;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
}

.image-area {
    background-image: url("../assets/admin/img/bg-3.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 991px) {
    .image-area {
        display: none;
    }
    .login-area {
        min-height: 496px;
    }
}
.login-headline {
    align-items: center;
    text-align: center;
    margin: 40px;
}

.login-form {
    align-items: center;
    text-align: center;
    margin-right: 20px;
}

.login-form input {
    margin: 20px;
    width: 90%;
    height: 50px;
    border-radius: 50px;
    outline: none;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px 15px 15px 15px;
    transition: all 0.3s;
}

.login-form input:focus,
input:valid {
    opacity: 1;
    transform: scale(1);
    color: #505050;
    transform: translateY(-20px);
}

.login-button {
    background: rgb(0, 149, 218);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;
    padding: 13px 50px 15px 50px;
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 50px;
    margin: 20px;
    outline: none;
    transition: all 0.5s;
}

.login-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.login-button span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.login-button:hover span {
    padding-right: 25px;
}

.login-button:hover span:after {
    opacity: 1;
    right: 0;
}

.forget-password-link {
    border: none;
    color: black;
    font-weight: 600;
    cursor: pointer;
    padding: 13px 50px 15px 50px;
    letter-spacing: 1px;
    font-size: 15px;
    margin: 20px;
    outline: none;
    text-decoration: underline;
    font-style: oblique;
}

.inner-area {
    padding: 30px 50px;
    text-align: center;
    border: solid 5px #ffffff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
    background: rgba(250, 250, 250, 0.7);
    border-radius: 4px;
}

.image-area {
    align-items: center;
}

.inner-area h3 {
    font-size: 32px;
    text-transform: uppercase;
    color: #3f94d9;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
}

.social-list a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    font-size: 17px;
    margin: 2px;
    border-radius: 5%;
    background: #fff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.fb-bg {
    color: #3b5998;
}

.tw-bg {
    color: #00acee;
}

.ln-bg {
    color: #0072b1;
}

.pn-bg {
    color: #c8232c;
}

.brand-image img {
    height: 150px;
    width: 150px;
}

.brand-image {
    align-content: center;
    text-align: center;
    align-self: center;
}

.error-message {
    font-style: oblique;
    padding: 12px 20px;
}

.error-message p {
    color: #d42d2deb;
    font-weight: 500;
}

.inner-area p {
    font-size: 24px;
    color: #f05a22;
}

.inner-area p,
h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: 600;
}
