/* Minification failed. Returning unminified contents.
(12,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */

.login100-form-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ─── Login card style ───────────────────────────────────────────────────────
   CARD_STYLE: "white" | "frosted"
   "white"   → solid white card (default)
   "frosted" → frosted glass — brand gradient bleeds through
────────────────────────────────────────────────────────────────────────── */
:root { --card-style: "white"; }

.wrap-login100 {
    max-width: 440px;
    width: calc(100% - 40px);
    margin: 20px;
    border-radius: 24px;
    color: #212529;
    animation: cardEntrance 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;

    /* white (default) */
    border: none;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

/* ── เปลี่ยนเป็น frosted: uncommment บรรทัดด้านล่าง แล้ว comment บรรทัด white ออก ── */
/*
.wrap-login100 {
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}
*/
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
body {
    background-color: brown;
    animation: bgFadeIn 0.35s ease both;
}
@keyframes bgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.lineloginbtn {
    border-radius: 25px;
    color: white;
    border-color: white;
}
.loginbtn {
    border-radius: 25px;
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 12px 24px;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.loginbtn:hover {
    opacity: 0.88;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.loginbtn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.login-language {
    border-radius: 25px;
}
.login-lang-no-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    padding: 6px 14px !important;
    min-width: 52px;
}
.text-login {
    color: black;
}

