.login-page {
    min-height: 100vh;
    padding: 0;
    background: #ffffff;
    color: #11342d;
    font-family: "Poppins", "Open Sans", Arial, sans-serif;
    position: relative;
    overflow-x: hidden;
}

.login-page .central2 {
    min-height: 100vh;
    height: auto;
    padding: 28px 18px;
    position: relative;
    z-index: 1;
}

.login-page .central2 > div {
    width: 100%;
    max-width: 430px;
    padding: 0;
    border-left: 0;
    background: transparent;
}

.login-card {
    width: 100%;
    gap: 0;
    padding: 34px;
    background: #ffffff;
    border: 1px solid rgba(205, 228, 220, 0.9);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(15, 70, 58, 0.10);
}

.login-page .login-card > div,
.login-page .login-card .login-alert {
    width: 100%;
    max-width: none;
    padding: 0;
    border-left: 0;
    background: transparent;
}

.login-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin: 0 auto 18px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #edf8f4;
    color: #13745d;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.login-page .central2 img {
    width: 210px;
    max-width: 78%;
    padding: 0;
    margin: 0 auto 18px;
    display: block;
}

.login-page .central2 label:not(.login-field) {
    width: 100%;
    padding: 0;
    margin: 0;
    color: #073f36;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.28;
    text-align: center;
}

.login-subtitle {
    margin: 8px 0 22px;
    color: #667b75;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.login-field {
    width: 100%;
    height: 54px;
    margin: 0 0 12px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #d9e7e2;
    border-radius: 16px;
    background: #f8fbfa;
    color: #6f8680;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

.login-field:focus-within {
    background: #ffffff;
    border-color: #69B39F;
    box-shadow: 0 0 0 4px rgba(105, 179, 159, 0.16);
}

.login-page .central2 input {
    width: 100%;
    min-width: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent;
    color: #17342d;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    text-align: left;
    outline: none;
}

.login-page .central2 input::placeholder {
    color: #8a9b96;
}

.login-page .central2 .botaoPrimario {
    width: 100%;
    min-height: 54px;
    margin: 4px 0 0 !important;
    border: 0;
    border-radius: 16px !important;
    background: #149866 !important;
    box-shadow: 0 14px 28px rgba(20, 152, 102, 0.24);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.login-page .central2 .botaoPrimario:hover,
.login-page .central2 .botaoPrimario:focus {
    background: #0f8458 !important;
    box-shadow: 0 16px 32px rgba(20, 152, 102, 0.28);
    transform: translateY(-1px);
}

.login-alert {
    width: 100%;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.login-alert-success {
    background: #e9f8f0;
    color: #0d6c48;
}

.login-alert-warning,
.login-alert-info {
    background: #fff8e6;
    color: #8a5b00;
}

.login-alert-danger {
    background: #fff0ee;
    color: #a33725;
}

.login-page .login-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    color: #58716a;
    font-size: 13px;
    font-weight: 600;
}

.login-page .login-links a,
.login-page .login-links span {
    color: #58716a;
    text-decoration: none;
    line-height: 1.35;
}

.login-page .login-links a {
    color: #0f7f5d;
    font-weight: 700;
}

.login-page .login-links a:hover,
.login-page .login-links a:focus {
    color: #149866;
    text-decoration: none;
}

@media (max-width: 768px) {
    .login-card {
        padding: 30px 24px;
        border-radius: 22px;
    }
}

@media (max-width: 420px) {
    .login-page .central2 {
        padding: 18px 14px;
    }

    .login-page .central2 img {
        width: 185px;
    }

    .login-page .login-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}
