/* 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;
}


h1, h2, h3, h4, h5, h6, p {
    color: black;
    font-family: 'Poppins Light';
}

.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;
}

.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);
}

@media (max-width: 900px) {
    .header {
        width: 98vw;
        max-width: 98vw;
        min-width: 0;
        margin: 8px 1vw;
        padding: 8px 2vw;
        font-size: 1em;
        border-radius: 25px;
    }
}



.signup-container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 0;
    position: static;
    transform: none;
    box-shadow: none;
}

.signup-container .signupframe {
    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;
    margin: 32px 0;
    position: static;
    top: unset;
    left: unset;
    transform: none;
    transition: none;
    animation: popInCard 0.7s cubic-bezier(.4,0,.2,1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 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);}
}

@media (max-width: 600px) {
    .signup-container .signupframe {
        min-width: 0;
        max-width: 98vw;
        padding: 18px 4vw;
    }
}

.signup-container .signupframe input,
.signup-container .signupframe select {
    width: 100%;
    height: 56px;
    margin-bottom: 18px;
    padding: 0 24px;
    border-radius: 25px;
    font-family: 'Poppins Light';
    border: none;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.03);
    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;
    -webkit-backdrop-filter: none;
    color: #000000;
}

@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);}
}

.signup-container .signupframe input:focus,
.signup-container .signupframe select: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);
}

.signup-container .signupframe input:active,
.signup-container .signupframe select:active {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(0.99);
}

.signup-container .signupframe input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    font-size: 1.05rem;
}

.signup-container .signupframe .continueframe .continuebutton {
    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;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    margin: 20px 0 0 0;
    animation: popInInput 0.5s cubic-bezier(.4,0,.2,1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.signup-container .signupframe .continueframe .continuebutton::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;
}

.signup-container .signupframe .continueframe .continuebutton:hover::before {
    transform: translateX(100%);
}

.signup-container .signupframe .continueframe .continuebutton:hover,
.signup-container .signupframe .continueframe .continuebutton:focus {
    background: #333333;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.signup-container .signupframe .continueframe .continuebutton:active {
    background: #000000;
    transform: scale(0.98);
}

.signup-container .signupframe .phone-prefix {
    width: 32%;
    min-width: 90px;
    height: 44px;
    border: 1.5px solid #bbb;
    border-radius: 25px;
    font-family: 'Poppins Light';
    font-size: 1rem;
    padding-left: 10px;
    background: rgba(255,255,255,0.65) url("data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center/18px 18px;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, transform 0.18s;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    border: 1.5px solid rgba(187,187,187,0.38);
}

.signup-container .signupframe .phone-prefix:focus {
    border-color: #414141;
    box-shadow: 0 2px 12px #eaf1fe;
    background: rgba(246,248,250,0.85);
}

.signup-container .signupframe h2 {
    text-align: center;
    font-family: 'Poppins Bold';
    color: #000000;
    padding: 0;
    margin-bottom: 40px;
    font-size: 3rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 700;
}

.signup-container .signupframe .register-link {
    text-align: center;
    font-family: 'Poppins Light';
    margin-top: 30px;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
}

.signup-container .signupframe .loginbutton {
    color: #000000;
    text-decoration: none;
    font-family: 'Poppins Bold';
    font-weight: 700;
    transition: all 0.3s ease;
}

.signup-container .signupframe .loginbutton:hover {
    color: #333333;
    transform: translateY(-1px);
}

.signup-container .signupframe .loginbutton:active {
    color: #000000;
    transform: scale(0.98);
}



.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;
}

.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-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 24px;
}

.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;
}

