/* Hide all scrollbars globally */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

@font-face{
    font-family: 'Poppins Light';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    color: black;
}

.header {
    position: fixed;
    width: auto;
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 20px 30px;
    margin: 20px 20px;
    font-family: 'Poppins Light';
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    border-radius: 0;
    border: none; 
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: none;
    box-shadow: none;
}

.header .big{
    font-family: 'Poppins Bold';
    font-size: 2rem;
    font-weight: 700;
}

.header .bite {
    font-size: 2rem;
    font-weight: 400;
}

.header:hover {
    transform: translateY(-2px);
}

.header:active {
    transform: scale(0.98);
}

.login-container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 0px;
    box-shadow: none;
    border-radius: 0;
    margin: 0px;
    overflow-x: hidden;
}

.login-container .loginframe {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: none;
    border: none;
    padding: 60px 40px;
    min-width: 400px;
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: popInCard 0.7s cubic-bezier(.4,0,.2,1);
    margin: 24px 0;
    position: static;
    top: unset;
    left: unset;
    transform: none;
    backdrop-filter: none;
}

@keyframes popInCard {
    0% { opacity: 0; transform: scale(0.93) translateY(40px);}
    80% { opacity: 1; transform: scale(1.03) translateY(-6px);}
    100% { opacity: 1; transform: scale(1) translateY(0);}
}

.login-container .loginframe .loginlabel {
    font-family: 'Poppins Bold';
    font-size: 3rem;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
    font-weight: 700;
    padding: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.login-container .loginframe .usernamegroup,
.login-container .loginframe .passwordgroup {
    width: 100%;
    margin: 0 0 12px 0;
    display: flex;
    padding: 0;
    border: none;
    background: none;
    height: auto;
}

.login-container .loginframe .usernamegroup input,
.login-container .loginframe .passwordgroup input {
    width: 100%;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.03);
    font-family: 'Poppins Light';
    height: 56px;
    border-radius: 25px;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
    font-size: 1.1rem;
    color: #000000;
    box-shadow: none;
    animation: popInInput 0.5s cubic-bezier(.4,0,.2,1);
    backdrop-filter: none;
}

@keyframes popInInput {
    0% { opacity: 0; transform: scale(0.96) translateY(18px);}
    80% { opacity: 1; transform: scale(1.03) translateY(-4px);}
    100% { opacity: 1; transform: scale(1) translateY(0);}
}

.login-container .loginframe .usernamegroup input:focus,
.login-container .loginframe .passwordgroup input:focus {
    border: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.login-container .loginframe .usernamegroup input:active,
.login-container .loginframe .passwordgroup input:active {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(0.99);
}

.login-container .loginframe .loginbutton {
    width: 100%;
    height: 56px;
    background: #000000;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins Bold';
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    animation: popInInput 0.5s cubic-bezier(.4,0,.2,1);
    backdrop-filter: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.login-container .loginframe .loginbutton::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.login-container .loginframe .loginbutton:hover::before {
    transform: translateX(100%);
}

.login-container .loginframe .loginbutton:hover,
.login-container .loginframe .loginbutton:focus {
    background: #333333;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.login-container .loginframe .loginbutton:active {
    background: #000000;
    transform: scale(0.98);
}

.login-container .loginframe .register-link {
    text-align: center;
    font-family: 'Poppins Light';
    margin-top: 30px;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
}

.login-container .loginframe .registerbutton  {
    color: #000000;
    text-decoration: none;
    font-family: 'Poppins Bold';
    font-weight: 700;
    transition: all 0.3s ease;
}

.login-container .loginframe .registerbutton:hover,
.login-container .loginframe .registerbutton:focus {
    color: #333333;
    text-decoration: none;
    transform: translateY(-1px);
}

.login-container .loginframe .registerbutton:active {
    color: #000000;
    transform: scale(0.98);
}

/* Placeholder modern */
.login-container .loginframe input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    font-size: 1.05rem;
    letter-spacing: 0;
}

/* Modern Remember Me Checkbox */
.remember-me-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    justify-content: flex-start;
    width: 100%;
}

.remember-me-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
    box-shadow: none;
}

.remember-me-group input[type="checkbox"]:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(1.05);
}

.remember-me-group input[type="checkbox"]:checked {
    background: #000000;
    border: none;
    transform: scale(1);
}

.remember-me-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    opacity: 1;
    animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1); 
    }
}

.remember-me-group label {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Poppins Light';
    transition: color 0.3s ease;
    user-select: none;
}

.remember-me-group label:hover {
    color: #000000;
}

.remember-me-group input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .header {
        display: none;
    }
    .login-container {
        
        min-height: 100vh;
        width: 100vw;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: hidden;
        margin: 0;
        box-sizing: border-box;
    }
    .login-container .loginframe {
        min-width: 0;
        max-width: 100vw;
        width: 100%;
        padding: 16px 8px 18px 8px;
        border-radius: 25px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        margin-left: 12px;
        margin-right: 12px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .login-container .loginframe .loginlabel {
        font-size: 1.3em;
        padding: 8px 0;
        margin-bottom: 12px;
    }
    .login-container .loginframe .usernamegroup input,
    .login-container .loginframe .passwordgroup input {
        height: 38px;
        font-size: 0.98em;
        border-radius: 25px;
        padding: 0 10px;
    }
    .login-container .loginframe .loginbutton {
        height: 40px;
        font-size: 1em;
        border-radius: 25px;
        margin-top: 8px;
    }
    .login-container .loginframe .register-link {
        font-size: 0.98em;
        margin-top: 14px;
    }
}









.site-footer {
    background: #fff;
    color: #000;
    padding: 48px 0 24px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 48px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: static;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    margin: 0;
}

.footer-links a:hover {
    color: #000;
}

.footer-links a::after {
    display: none;
}

.footer-lang {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-lang label {
    font-family: 'Poppins', sans-serif;
    margin-right: 12px;
    font-weight: 500;
    color: #000;
    font-size: 0.875rem;
}

#lang-select {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 36px 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background: #f5f5f5 url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/16px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    color: #000;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.2s ease;
}

#lang-select:hover {
    background-color: #e0e0e0;
}

#lang-select:focus {
    border-color: #000;
    background-color: #fff;
}

#lang-select::-ms-expand {
    display: none;
}

#lang-select option {
    background: #fff;
    color: #000;
}

.footer-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 24px;
}


