﻿body {
    background: white;
    align-content:center;
}


body {
    background: white;
}

.banner {
    background: #00995d;
    color: white;
    padding: 20px;
}

    .banner h2 {
        font-weight: 300;
    }

.login-card {
    max-width: 420px;
    margin: auto;
    margin-top: 40px;
}

.footer {
    text-align: center;
    font-size: 13px;
    margin-top: 40px;
    color: #777;
}

.texto-bemvindo {
    color: #79797b;
    font-size: 16px;
    padding-left: 33px;
}


/* --- layout geral --- */
.coop-login-page {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #222;
    background: #ffffff;
    min-height: 100vh;
}

.coop-topbar-inner {
    width: 980px; /* largura fixa parecida com a imagem */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.coop-brand {
    height: 40px;
    width: 175px;
    height: 85px;
    margin-top: 9px;
}

.coop-welcome {
    margin-left: 35px;
    background: #cfcfcf;
    padding: 8px 18px;
    border-radius: 8px;
    color: #2e5a2e;
    font-style: italic;
    font-size: 16px;
    width: 694px;
    height: 53px;
    margin-top: 30px;
    text-align: right;
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-radius: 0px;
}

/* Main content (painel + banner) */
.coop-main {
    width: 980px;
    margin: 20px auto;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.coop-login-panel {
    background: #0a6b0a; /* verde escuro */
    color: #ffffff;
    border-radius: 10px;
    padding: 13px;
    box-sizing: border-box;
    position: relative;
    width: 204px;
    height: 403px;
    border-top-left-radius: 13px;
    border-bottom-right-radius: 13px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    height: 403px;
    padding-top: 24px;
}

.coop-title {
    font-size: 24px;
    color: #fff;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

/* Inputs */
.label-small {
    display: block;
    margin: 8px 0 6px;
    font-size: 13px;
    color: #9fc000 !important;
    padding-top: 10px;
    font-weight: normal;
}

.input-wrap {
    margin-bottom: 10px;
}

.coop-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: #eef6ff; /* tom claro como na imagem */
    color: #222;
    font-size: 14px;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.03);
}

/* lembrar senha */
.remember-row {
    margin-top: 6px;
}

.remember {
    color: #e6f0d6;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .remember input[type="checkbox"] {
        width: 14px;
        height: 14px;
        accent-color: #d7e7a0;
    }

.login-checkbox {
    margin-top: 20px;
    color: #9fc000;
    margin-left: 60px;
}

.checkbox-label {
    font-weight: normal !important;
    color: #9fc000 !important;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* OK button (pequeno amarelo/verde) */
.ok-row {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
}

.btn-ok {
    width: 52px;
    height: 30px;
    border: none;
    background: #b6d400; /* amarelo-esverdeado */
    color: #016600;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.08);
    border-top-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    border-radius: 0px;
    font-size: 12px;
}

/* recuperar senha */
.recover {
    margin-top: 8px;
    text-align: right;
}

.recover-link {
    color: white !important;
    text-decoration: none;
    font-size: 13px;
}

/* Right banner */
.coop-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.coop-banner {
    width: 694px;
    height: 403px;
    display: block;
}

/* Footer */
.coop-footer {
    width: 980px;
    margin: 18px auto 60px;
    text-align: center;
    padding: 10px 12px;
    background: #f1f1f1;
    border-radius: 2px;
    color: #6a6a6a;
    font-size: 13px;
}

/* Responsividade simples */
@media (max-width: 1000px) {
    .coop-topbar-inner,
    .coop-main,
    .coop-footer {
        width: 92%;
    }

    .coop-main {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .coop-left {
        width: 100%;
        width: 420px;
        height: 403px;
    }

    .coop-banner {
        max-width: 100%;
    }
}
