@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --black-color: #324158;
    --white-color: #FFFFFF;
    --primary-color: #de2a4e;
    --secondary-color: #6f6d78;
    --warning-color: #FFA81C;
    --info-color: #2d4f81;
    --body-color: #183661;
    --card-rotate: #f1f1fb;
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    color: var(--black-color);
    background-color: var(--body-color);
}

/* .regist {
    background-image: url('../img/morphoo/bg-regist.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 100vh;
} */

.regist .card-rotate {
    background-color: var(--card-rotate);
    height: 90vh;
    rotate: -4deg;
    position: absolute;
    right: -70px;
    left: 15px;
    top: -70px;
}
.regist .main {
    position: relative;
}
.regist .content .logo img {
    width: 330px;
}

.preschool {
    background-color: var(--warning-color);
    width: 100%;
    height: 150px;
}

.primary-school {
    background-color: var(--primary-color);
    width: 100%;
    height: 150px;
}

.secondary-school {
    background-color: var(--info-color);
    width: 100%;
    height: 150px;
}

.high-school {
    background-color: var(--secondary-color);
    width: 100%;
    height: 150px;
}

.regist .content .icon img {
    width: 40px;
}

.pattern-1 {
    position: absolute;
    top: 70px;
    left: 130px;
    animation: MoveUpDown 3s linear infinite;
}

.pattern-1 img {
    width: 85px;

}

.pattern-2 {
    position: absolute;
    top: 200px;
    right: 130px;
    animation: MoveUpDown 3s linear infinite;
}

.pattern-2 img {
    width: 85px;
}

.pattern-3 {
    position: absolute;
    bottom: 250px;
    left: 240px;
    animation: MoveUpDown-2 3s linear infinite;
}

.pattern-3 img {
    width: 135px;
}

footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    z-index: 2;
}

@keyframes MoveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    0%,
    100% {
        bottom: 0;
    }

    50% {
        bottom: 30px;
    }
}


@keyframes MoveUpDown-2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    0%,
    100% {
        bottom: 250px;
    }

    50% {
        bottom: 180px;
    }
}