@import url('https://fonts.googleapis.com/css2?family=Edu+VIC+WA+NT+Hand+Pre:wght@400..700&family=Kapakana:wght@300..400&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: aliceblue;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    padding-bottom: 220px; /* Space for footer */
}

.logo {
    margin-top: 10px;
    margin-bottom: 5px;
}

.sign-container {
    max-width:250px;
    min-width: 180px;
    border: 1px solid #dbdbdb;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.signIn-title {
    font-size: clamp(24px, 4vw, 28px);
    font-weight: 400;
    margin-bottom: 10px;
}

.input-label {
    margin-top: 20px;
    font-size: 9px;
    color: #333;
}

.sign-container input {
    width: 100%;
    height: 40px;
    margin-top: 5px;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid #dbdbdb;
    font-size: 9px;
    transition: border-color 0.3s ease;
}

.sign-container input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 1px #0066cc;
}

.sign-container button {
    width: 100%;
    height: 40px;
    margin: 20px 0 15px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #ffdf41;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.sign-container button:hover {
    background-color: #ebc712;
}

.signin-condition {
    font-size: 12px;
    color: #666;
    line-height: 0.9;
}

.sign-container span {
  font-size: 12px;
    color: rgb(2, 94, 2);
}
.buy{
    font-size: 9px;
}
.signin-help {
    font-size: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: rgb(174, 0, 0);
}

.sign-container hr {
    margin: 15px 0;
    border: none;
    height: 1px;
    background-color: #dbdbdb;
}

.business {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.signin-bottom {
    width: 100%;
    max-width: 350px;
    font-size: 13px;
    color: #737373;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.signin-bottom hr {
    flex: 1;
    max-width: 110px;
    border: none;
    height: 1px;
    background-color: #d4d4d4;
}

.sign-signup-btn {
    width: 100%;
    max-width: 350px;
    min-width: 280px;
    height: 40px;
    font-size: 14px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 8px 16px;
    border: 1px solid #dbdbdb;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-signup-btn:hover {
    background-color: #f5f5f5;
}

footer {
    width: 100%;
    height: auto;
    min-height:40px;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, #f4f4f4, #fff);
    border-top: 1px solid #ededed;
    z-index: 1000;
}
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #00549d;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #003d73;
    text-decoration: underline;
}

/* Responsive breakpoints */
@media screen and (max-width: 480px) {
    body {
        padding: 10px;
        padding-bottom: 180px;
    }

    .sign-container {
        padding: 15px;
        min-width: auto;
    }

    .signIn-title {
        font-size: 24px;
    }

    .footer-links {
        gap: 15px;
        padding: 0 10px;
    }

    .footer-links a {
        font-size: 11px;
    }

    footer {
        min-height: 120px;
        padding: 15px;
    }
}

@media screen and (min-width: 1200px) {
    body {
        padding-top: 4px;
    }

    .logo {
        margin-top: 10px;
    }

    .sign-container {
        max-width: 280px;
        padding: 15px;
    }

    .signin-bottom,
    .sign-signup-btn {
        max-width: 280px;
    }
}

/* Ensure proper scaling at different zoom levels */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .sign-container {
        max-width: 380px;
    }

    .signin-bottom,
    .sign-signup-btn {
        max-width: 380px;
    }
}

/* Additional fixes for 100% screen scaling */
@media screen and (min-width: 1400px) {
    body {
        padding-top: 60px;
    }

    .logo {
        margin-top: 60px;
    }

    .sign-container {
        max-width: 420px;
        padding: 35px;
    }

    .signin-bottom,
    .sign-signup-btn {
        max-width: 420px;
    }
}

/* Ultra-wide screen support */
@media screen and (min-width: 1920px) {
    body {
        padding-top: 80px;
    }

    .logo {
        margin-top: 80px;
    }

    .sign-container {
        max-width: 450px;
        padding: 40px;
    }

    .signin-bottom,
    .sign-signup-btn {
        max-width: 450px;
    }
}