* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #07111f;
    min-height: 100vh;
}


/* =========================================
   ESTRUTURA
========================================= */

.login-main-image {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


/* =========================================
   LADO ESQUERDO
========================================= */

.login-left {
    width: 58%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(circle at center, #0d2743 0%, #07111f 70%);
}


.login-image {
    width: 88%;
    max-width: 820px;

    object-fit: contain;

    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.45));
}


.login-brand {
    position: absolute;

    left: 50%;
    bottom: 48px;

    transform: translateX(-50%);

    text-align: center;

    color: #ffffff;
}


.login-brand h1 {
    font-size: 42px;
    letter-spacing: 6px;

    text-shadow:
        0 0 15px rgba(0,140,255,0.65);
}


.login-brand span {
    display: block;

    margin-top: 5px;

    font-size: 12px;
    letter-spacing: 4px;

    color: #aab7c7;
}


/* =========================================
   LADO DIREITO
========================================= */

.login-right {
    width: 42%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #07111f,
            #0a1727
        );
}


/* =========================================
   CARD LOGIN
========================================= */

.login-box {
    width: 100%;
    max-width: 430px;

    padding: 48px;

    border-radius: 22px;

    border: 1px solid rgba(90, 160, 220, 0.25);

    background: rgba(8, 24, 41, 0.88);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.38);

    backdrop-filter: blur(15px);

    color: #ffffff;
}


.bem-vindo {
    display: block;

    text-align: center;

    font-size: 12px;
    letter-spacing: 5px;

    color: #8ea1b5;
}


.login-box h2 {
    margin-top: 8px;

    text-align: center;

    font-size: 38px;
    letter-spacing: 4px;
}


.subtitulo {
    margin-top: 7px;
    margin-bottom: 35px;

    text-align: center;

    font-size: 11px;
    letter-spacing: 3px;

    color: #8ea1b5;
}


/* =========================================
   CAMPOS
========================================= */

.campo {
    margin-bottom: 18px;
}


.campo label {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;

    color: #aeb9c7;
}


.campo input {
    width: 100%;
    height: 50px;

    padding: 0 16px;

    border-radius: 9px;

    border: 1px solid #24374d;

    background: #101f30;

    color: #ffffff;

    outline: none;

    transition: 0.2s;
}


.campo input::placeholder {
    color: #6f8194;
}


.campo input:focus {
    border-color: #1597ff;

    box-shadow:
        0 0 0 3px rgba(21,151,255,0.12);
}


/* =========================================
   BOTÃO
========================================= */

button {
    width: 100%;
    height: 50px;

    margin-top: 10px;

    border: none;
    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #0787ef,
            #1eb0ff
        );

    color: #ffffff;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}


button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 22px rgba(0,140,255,0.35);
}


/* =========================================
   ERRO
========================================= */

.erro-login {
    margin-bottom: 12px;

    padding: 10px;

    border-radius: 7px;

    background: rgba(220, 38, 38, 0.15);

    color: #ff8c8c;

    font-size: 13px;
}


/* =========================================
   RODAPÉ
========================================= */

.login-footer {
    margin-top: 35px;

    display: flex;
    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.08);

    font-size: 11px;

    color: #6f8194;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 900px) {

    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }

}

/* =========================================================
   LOGO HARTLEM
========================================================= */

.login-left .login-main-image {
    width: 420px !important;
    max-width: 80% !important;
    height: auto !important;
    max-height: 100px !important;

    object-fit: contain !important;

    display: block !important;
    margin: 0 auto !important;

    position: static !important;
}
.login-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

.login-main-image {
    width: 100px !important;
    max-width: 85% !important;
    height: auto !important;
    max-height: 360px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
}

/* =========================================================
   LOGO HARTLEM - CORREÇÃO FINAL
========================================================= */

.login-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.login-logo-container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.login-left .login-logo-hartlem {
    width: 380px !important;
    max-width: 75% !important;

    height: auto !important;
    max-height: 380px !important;

    object-fit: contain !important;

    position: static !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    margin: 0 auto !important;

    transform: none !important;
}
.login-page {
    min-height: 100vh;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.login-left,
.login-right {
    width: 50% !important;
    min-height: 100vh !important;
}

.login-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.login-right {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.login-logo-container {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.login-left .login-logo-hartlem {
    width: 600px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    object-fit: contain !important;
}