@import url(https://fonts.googleapis.com/css2?family=Montserrat: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);
@keyframes pulse-opacity {
    0%,
    to {
        opacity: 1;
    }
    70% {
        opacity: 0.2;
    }
}
@keyframes pulse-teal {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #808001;
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent;
    }
    to {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}
@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 #ff3d3d;
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent;
    }
    to {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}
@keyframes pulse-input {
    0%,
    to {
        box-shadow: 0 0 0 transparent;
    }
    70% {
        box-shadow: 0 0 10px rgba(253, 211, 0, 0.6);
    }
}
@keyframes show-effect {
    0% {
        transform: translate(0, -50%);
        opacity: 0;
    }
    50% {
        transform: translate(0, -20%);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}
:root {
    touch-action: pan-x pan-y;
    height: 100%;
}
::placeholder {
    color: #789;
    opacity: 1;
    font-weight: 300;
}
::-webkit-scrollbar {
    width: 0;
    height: 0;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(255, 188, 13, 0.5);
    border-radius: 50px;
}
::-webkit-scrollbar-track {
    background-color: #fafafa;
    border-radius: 50px;
}
.logo-reset-password {
    position: relative;
    width: auto;
    height: 120px;
    margin: 0;
    display: none;
}
body {
    font-family: "Montserrat", sans-serif;
    color: #525f7f;
    border-top: 7px solid #fcc145;
    margin: 0px;
    overflow: auto;
    margin-bottom: 0px !important;
}
body.bg-default {
    position: relative;
    height: 100%;
    display: flex;
    -webkit-animation: show-effect 1.3s linear;
    animation: show-effect 1.3s linear;
    padding: 0;
    margin: 0;
    text-align: center;
    background: #fff;
    align-items: center;
    flex-direction: column;
}
img.logo-resetpassword {
    width: 100%;
    height: 100%;
}
.title-big-section,
form {
    position: relative;
    max-width: 350px;
    width: 90%;
}
.title-big-section {
    top: 0;
    z-index: 1;
    padding: 0;
    margin: 0 auto;
    color: #32325d;
}
h2,
h3 {
    margin-bottom: 10px;
}
h3 {
    color: #789;
    font-size: 17px;
    line-height: 20px;
    font-weight: 500;
    margin-top: 0;
}
input.form-control {
    outline: 0;
    padding: 20px 20px;
    width: -webkit-fill-available;
    width: -moz-available;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #000;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;
    animation: pulse-input 1s infinite;
    border: 1px solid rgb(253 211 0) !important;
}
button.btn.btn-primary.my-4,
button.go-back-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    cursor: pointer;
}
button.btn.btn-primary.my-4,
input.form-control {
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
}
button.btn.btn-primary.my-4 {
    padding: 17px 0;
    background: goldenrod;
    color: #fff;
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 0 0 rgb(117 125 146/8%), 0 0 0 rgb(117 171 255/10%),
    5px 5px 20px rgb(88 88 190/5%) !important;
    transition: 0.6s cubic-bezier(0.01, 1.69, 0.99, 0.94);
}
button.btn.btn-primary.my-4:hover {
    transition: 0.6s cubic-bezier(0.01, 1.69, 0.99, 0.94);
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgb(117 125 146/20%), 0 0 0 rgb(117 171 255/10%),
    0 15px 20px rgb(88 88 190/10%) !important;
}
form {
    margin: 20px auto 0;
}
.alert.alert-success,
.main-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    left: 0px;
    right: 0px;
    height: 100%;
}
.container.mt--8.pb-5 {
    display: flex;
    margin: 0 auto;
    background: 0 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    flex-direction: column;
    width: 100%;
}
.forgot-password {
    padding-top: 100px;
}
.forgot-password,
img.forgotpassword {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}
button.go-back-button {
    background: 0 0;
    color: #32325d;
    font-size: 16px;
    margin: 40px 0;
    font-family: GothamPro;
}
button.go-back-button:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: 0.2s linear;
}
i.fi.fi-rr-arrow-small-left {
    font-size: 24px !important;
    position: relative;
    top: 5px;
    margin-right: 0;
    color: #000;
}
.section-all {
    /* box-shadow: 0 0 0 rgb(117 125 146 / 8%), 0 0 0 rgb(117 171 255 / 10%), 0 0 40px rgb(88 88 190 / 10%); */
    width: 100%;
    margin: 0 auto;
    background: #fff;
}
.logo-recovery {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
h2 {
    text-align: center;
    color: #000;
    font-weight: 800;
    font-size: 17px;
    background: #fff;
    z-index: 1;
    margin: 10px auto 20px auto;
    padding: 0 20px;
    letter-spacing: 0px;
    text-transform: uppercase;
}
.alert.alert-success {
    background: #fff;
    color: #303056;
    font-weight: 500;
    position: fixed;
    z-index: 1;
    font-size: 18px;
    margin: 0 auto;
    right: 0;
    top: 10px;
    left: 0;
    max-width: 550px;
    width: 100%;
    background-image: url(../images/mailbox2.gif);
    background-position: 50% 150px;
    background-repeat: no-repeat;
    background-size: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-bottom: 200px;
}

span.invalid-feedback {
    color: red;
    top: 12px;
    position: relative;
}
strong {
    font-weight: 400;
}
a.go-back-button {
    text-decoration: none;
    color: #000;
}
a.go-back-button:hover {
    text-decoration: underline;
}
.go-back {
    margin-top: 50px;
    margin-bottom: 100px;
}
.main-content.change-psw {
    margin: 0 auto;
    text-align: center;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    width: 100%;
    overflow: auto;
    max-width: 100%;
}
