* {
    margin: 0;
    padding: 0;
}

body {
    /*background-image: url('assets/images/bg2.svg');*/
    height: 100vh;
    width: 100%;
    background-image: url('../images/BG.png');
    background-size: cover;
}

/* Styles portable v3 styles */
.container-central {
    position: relative
}

.elements-central {
    position: absolute;
    height: 100%;
    width: 100%;
}

.img-icon {
    width: 100px;
    height: 100px;
}

.btn-login {
    background: linear-gradient(270deg, #e84305, #e87505, #dd7d1f);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 4s ease infinite;
    -moz-animation: AnimationName 4s ease infinite;
    animation: AnimationName 4s ease infinite;
    color: #fff;
}

/* Modificando todos inputs */

input[type="text"],
input[type="password"] {
    padding: 2px 10px;
    height: 45px;
    border: none;
    border-bottom: 1px solid #dadada;
    border-radius: 0px;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: #dadada !important;
}

.un {
    display: inline-block;
    padding-bottom: 2px;
    background: linear-gradient(270deg, #e84305, #e87505, #dd7d1f);
    background-position: 0 100%;
    /*OR bottom left*/
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition:
        background-size 0.3s,
        background-position 0s 0.3s;
    /*change after the size immediately*/
}

.un:hover,
.un:focus {
    background-position: 100% 100%;
    /*OR bottom right*/
    background-size: 100% 2px;
}

.un:focus {
    background-position: 100% 100%;
    /*OR bottom right*/
    background-size: 100% 2px;
}



/* Redefinindo bootstrap styles */
.form-control:focus {
    box-shadow: none !important;
    border-color: #dadada !important;
}

/* Container image */
.rounded-item-right {
    position: relative;
    min-height: 100vh !important;
}

.rounded-item-right>img {
    position: absolute;
    border-radius: 40px;
}

/* Container form */
.rounded-item-left {
    min-height: 100vh !important;
}

@media (max-width: 700px) {
    body {
        overflow-x: hidden;
    }

    .rounded-item-right,
    .rounded-item-left {
        min-height: 400px;
    }
}

.card {
    height: 100%;
    border: none;
}

.card-header {
    border-bottom: none;
    background-color: transparent !important;
}

.input-group-text {
    background: linear-gradient(270deg, #e84305, #e87505, #dd7d1f);
    color: #fff;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.underline-gradient {
    position: relative;
    color: #302b63;
}

.txt-login-form {
    color: #302b63;
}

.txt-login-form .underline-gradient {
    background-image: linear-gradient(to right, orange, orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline-gradient::before {
    content: "";
    position: absolute;
    top: 100%;
    width: 25px;
    text-align: center;
    height: 5px;
    border-radius: 2px;
    background: linear-gradient(270deg, #e84305, #e87505, #dd7d1f);
}

.fade-slide {
    animation: slideScale 2s linear;
    transition: opacity 2s linear;
}

/* Slide animation */
@keyframes slideScale {
    0% {
        opacity: 0.1542;
    }

    5% {
        opacity: 0.2235;
    }

    10% {
        opacity: 0.3432;
    }

    15% {
        opacity: 0.4442;
    }

    20% {
        opacity: 0.5567;
    }

    25% {
        opacity: 0.6673;
    }

    30% {
        opacity: 0.7542;
    }

    100% {
        opacity: 1;

    }
}

.forgetBtn {
    text-decoration: none;
    color: #302b63;
}

.forgetBtn:hover {
    text-decoration: underline;
    color: #212529;
}

/* Styles portable v3 styles */

.animationCenter {
    height: 100vh;
    width: 44vw;
}

.recuAcesso {
    border: none;
    background-color: transparent;
    color: #327a92;
}

.erroGroup {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    background-color: rgb(233, 236, 239, 0.5);
    border: none;
    border-radius: .25rem;
}

.load-images {
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center
}

.loader {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 20px auto;
    position: relative;
    background: currentColor;
    color: #e87505;
    box-sizing: border-box;
    animation: animloader 0.3s 0.3s linear infinite alternate;
}

.loader::after,
.loader::before {
    content: '';
    width: 8px;
    height: 40px;
    border-radius: 4px;
    background: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    box-sizing: border-box;
    animation: animloader 0.3s 0.45s linear infinite alternate;
}

.loader::before {
    left: -20px;
    animation-delay: 0s;
}

@keyframes animloader {
    0% {
        height: 48px
    }

    100% {
        height: 4px
    }
}