.myloader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #FFF #FFF transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.myloader::after,
.myloader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #1f5aa5 #1f5aa5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.myloader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF 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);
    }
}
.loader-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.visible{
    visibility: visible;
}

@import url("https://fonts.cdnfonts.com/css/muli");

* {
    padding: 0;
    margin: 0;
    font-family: "Muli", sans-serif;
    letter-spacing: normal;
}

.img-section {
    background-image: url("/assets/imgs/side-img.png");
    width: 100%;
    height: calc(100vh - 150px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 100%;
}

.main-bg {
    background: #406cad12 !important;
}

body {
    background: #406cad12 !important;
}

.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media only screen and (max-width: 600px) {
    .img-section {
        background-image: url("./assets/imgs/side-img.png");
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .page-footer {
        position: relative;
        height: auto;
        padding-bottom: 3rem;
        margin-top: 6rem;
    }

    .notice-card-main {
        height: 700px;
    }

}
