﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Lao:wght@400;800&display=swap');
section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Serif Lao', serif;
}

.logobox {
    display: flex;
    justify-content: center;
    align-content: center;
    height: 340px;
}

.loginbox {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 10px;
    /*width:800px;*/
}
.lgo {
    height:60px;
    width:60px;
}
.logologin {
    width: auto;
    height: auto;
    margin: 45px 45px;
}

.formbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 2em;
    text-align: center;
    font-weight: bold;
    color: var(--color-primary);
}

.inputbox {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid var(--color-primary);
}

.inputbox label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-size: 1em;
    pointer-events: none;
    transition: .5s;
}

input:focus ~ label, input:valid ~ label {
    top: -5px;
}

.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0 35px 0 5px;
    color: var(--color-primary);
}

.forget {
    font-size: .9em;
    color: var(--color-primary);
    margin: 25px 0 10px;
}

    .forget p a {
        color: var(--color-primary);
        font-weight: 600;
    }

        .forget p a:hover {
            text-decoration: underline;
        }

/*button {
    width: 70%;
    height: 40px;
    border-radius: 10px !important;
    background-color: var(--color-yellow);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: var(--color-primary);
}*/
body {
    background-image: url('/assets/images/login/bglogin-01.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}
.bi-eye-slash {
    position: absolute;
    margin: 2px 14px;
}
@media (max-width: 991px) {
    .col-12{
        width:100%;
    }
    .fw-semibold{
        text-align:center;
    }
}