@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 30px 15px;
}

.login-box {
    width: 100%;
        text-align: center;
    max-width: 540px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    padding: 32px;
    box-sizing: border-box;
}

.login-title {

    display: inline-block;
    margin: 0 0 8px 0;
    font-weight: 600;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-weight: 600;
    font-size: clamp(2.0rem, 4vw, 3.6rem);
    line-height: 1.05;
    background-image: linear-gradient(to right, #005c4b 0%, #00a1df 50%, #f6b21a 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    /* make text transparent so background shows through; include fallback color */
    -webkit-text-fill-color: transparent;
    color: #005c4b;
    /* fallback if background-clip not supported */
    text-shadow: 0 2px 12px rgba(1, 26, 24, 0.06);
}

.login-note {
    text-align: center;
    color: #666;
    margin: 0 0 18px 0;
}

.login-field {
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
}

.login-submit {
    width: 100%;
    padding: 12px 18px;
    border-radius: 6px;
}

.login-prompts {
    padding-top: 12px;
    text-align: center;
}

.login-prompts small {
    display: block;
    color: #555;
}

@media (max-width: 576px) {
    .login-box {
        padding: 20px;
    }
}
