:root {
    /*--color-gray-50: oklch(98.5% 0.002 247.839);*/
}



html{
    /*display: flex;*/
    max-width: 100vw;
    min-height: 100dvh
}

body {
    /*   background: oklch(71.5% 0.143 215.221) */
    /*background-color: var(--color-gray-50);*/
}

body:has(.login-area) {
    min-height: 100dvh;
    background: oklch(96.8% 0.007 247.896);
}

.login-wrap {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-area {
    width: 100%
}

.login-logo {
    max-width: 273px;
    margin-bottom: 4vh;
    padding-bottom: 10px
}
.terms-logo {
    /*margin: 40px 0 20px;*/
    display: flex;
    justify-content: center;
    img {
        width: 273px
    }
}
.app-logo {
    display: flex;
    align-items: center;
}
.app-logo img{
    height: 42px;
    width: auto
}
a:has(.fas) {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    &:hover,
    &:focus {
        text-decoration: none;
        opacity: 0.9
    }
}
/*.site-title {*/
/*    font-family: "Kanit", sans-serif;*/
/*    font-weight: 700;*/
/*    font-style: normal;*/
/*    font-size: 40px;*/
/*    text-align: center;*/
/*    margin-bottom: 20px*/
/*}*/
/*.site-title.site-title-header {*/
/*    font-size: 26px;*/
/*    line-height: 56px;*/
/*}*/

select {
    print-color-adjust: exact;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='oklch(0.551 0.027 264.364)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right .5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem
}

.group-title:before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 40px;
    cursor: pointer
}

.single-group [data-action="deleteGroup"] {
    display: none;
}




.add-group {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease-in-out,
    margin-top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.add-group.show {
    max-height: 600px;
    opacity: 1;
    margin-top: 1.5rem;
}


.add-group .form-content {
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
    opacity 0.5s ease-in-out 0.1s;
}

.add-group.show .form-content {
    transform: translateY(0);
    opacity: 1;
}


#showBtn button {
    transition: all 0.3s ease;
}

#showBtn.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}


