body {
    margin: 0;
}

/* FUNDO */
.page {
    min-height: 100vh;
    background: linear-gradient(135deg, #61934a, #18437c);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARD LOGIN */
.login-card {
    background: #fff;
    width: 100%;
    max-width: 380px;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

/* LOGO */
.logo {
    text-align: center;
    margin-bottom: 10px;
}

.logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* TEXTO */
.form-title {
    text-align: center;
    font-size: 14px;
    margin: 8px 0 16px 0;
    line-height: 1.4;
}

/* INPUTS */
.formSuasInfo input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* SENHA */
.password-field {
    position: relative;
}

.password-field button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

/* AÇÕES */
.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* BOTÕES */
.formSuasInfo .btn-primary {
    background: #61934a;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}

.formSuasInfo .btn-link {
    background: none;
    border: none;
    color: #18437c;
    cursor: pointer;
    font-size: 14px;
}

/* MODAL */
.modal-reset {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-reset.show-pass-reset {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    width: 100%;
    max-width: 360px;
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #18437c;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.modal-content .actions {
    display: flex;
    gap: 10px;
}

.modal-content .btn-primary,
.modal-content .btn-secondary {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.modal-content .btn-primary {
    background: #61934a;
    color: #fff;
}

.modal-content .btn-secondary {
    background: #18437c;
    color: #fff;
}

.login-title {
    text-align: center;
    margin-bottom: 18px;
}

.login-title h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #18437c;
    letter-spacing: 0.5px;
}

.login-title span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #61934a;
    font-weight: 500;
}

/* ALERTAS */
.alert {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.alert small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.9;
}

.alert-success {
    background: #e6f2e6;
    color: #61934a;
}

.alert-error {
    background: #fdeaea;
    color: #dc2626;
}

.alert-warning {
    background: #fff6e5;
    color: #18437c;
}

.alert-info {
    background: #e6f0fd;
    color: #18437c;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FOOTER MODERNO */
.footer {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.15);
    position: fixed;
    bottom: 0;
    left: 0;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #e5e7eb;
    font-size: 14px;
}

.footer-social span {
    opacity: .85;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(97, 147, 74, 0.25);
    color: #fff;
    transition: all .25s ease;
    font-size: 16px;
}

.footer-social a:hover {
    background: #18437c;
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 13px;
    color: #e5e7eb;
    opacity: .9;
}

.footer-copy strong {
    font-weight: 600;
}

.vfsoft-link {
    color: #e5e7eb;
    text-decoration: none;
}

.vfsoft-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* MOBILE */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
