body {
    -ms-flex-align: center;
    align-items: center;
    background-color: #f5f5f5;
    background-image: url("/image/login_background.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.account-pages {
    align-items: center;
    display: flex;
    min-height: 100vh;
}

.form-forget {
    width: 100%;
    max-width: 630px;
    min-width: 330px;
    padding: 15px;
    margin: auto;
}

.card {
    box-shadow: 0 6px 18px 0 rgb(0 0 0 / 6%);
    border-radius: 9px;
}

.back-icon {
    position: absolute;
    left: 20px;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #0077c1 #0077c1 transparent transparent;
    animation: rotation 1s linear infinite;
}

.loader:after, .loader:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #f2a02d #f2a02d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.loader:before {
    width: 32px;
    height: 32px;
    border-color: #27a435 #27a435 transparent transparent;
    animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(-360deg)
    }
}