@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap');
@font-face {
    font-family: "TH Sarabun PSK";
    src: local("TH Sarabun PSK"), url("font/THSarabun.ttf");
}

* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Kanit', sans-serif;
    /* background: #f9f9ff; */
    background-color:#d6d6e7;
    /* background: #3a3a8b; */
    /* background: -webkit-linear-gradient(to left, #cccccc, #939394); */
}

a {
    text-decoration: none;
}

.context-index{
    background-image: url('../asset/img/loginbg.png');
    background-repeat: no-repeat;
    background-position:left bottom;
}

.bg-sec {
    background-color: #F9E79F;
}

.headbanner {
    width: 100vw;
    max-height: 18rem;
}

.container2 {
    position: relative;
    text-align: center;
    color: white;
}


/* Bottom left text */

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 106px;
}

/* fedIn */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}