﻿body {
    height: 100vh;
    font-family: Segoe UI;
    background: #f3f4f6;
    margin: 0;
}

/* CONTAINER */

.login-container {
    height: 100vh;
    display: flex;
}

/* LOGO GLOBAL (caso use class="logo") */
.logo {
    width: 280px !important; /* AUMENTADO */
    height: auto;
}

/* LADO ESQUERDO */

.login-left {
    flex: 1;
    background: linear-gradient(180deg,#1f2937,#111827);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
}

    /* LOGO PRINCIPAL */
    .login-left img {
        width: 80px; /* 🔥 AUMENTADO */
        max-width: 80%;
        margin-bottom: 30px;
    }

    /* TÍTULO */
    .login-left h1 {
        font-size: 38px; /* leve aumento */
        font-weight: 700;
        margin-bottom: 10px;
    }

    /* TEXTO */
    .login-left p {
        opacity: .9;
        font-size: 16px;
    }

/* LADO DIREITO */

.login-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

/* CARD */

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 12px; /* mais moderno */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.login-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* INPUTS */

.form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding-left: 12px;
}

    .form-control:focus {
        border-color: #22c55e;
        box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    }

/* BOTÃO */

.btn-login {
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(180deg,#1f2937,#111827);
    border: none;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        opacity: 0.95;
    }

/* LINKS */

.login-links {
    text-align: center;
    margin-top: 20px;
}

    .login-links a {
        text-decoration: none;
        color: #22c55e;
        font-weight: 500;
    }

        .login-links a:hover {
            text-decoration: underline;
        }

/* ===================== */
/* RESPONSIVIDADE */
/* ===================== */

/* Tablet */

@media (max-width:992px) {

    .login-left {
        padding: 30px;
    }

        .login-left h1 {
            font-size: 30px;
        }

        .login-left img {
            width: 220px;
        }

    .login-card {
        padding: 30px;
    }
}

/* Celular */

@media (max-width:768px) {

    .login-container {
        flex-direction: column;
    }

    /* esconder lado esquerdo */

    .login-left {
        display: none;
    }

    .login-right {
        flex: 1;
        width: 100%;
    }

    .login-card {
        max-width: 100%;
        padding: 30px;
    }
}

/* Celular pequeno */

@media (max-width:480px) {

    .login-card {
        padding: 20px;
    }

    .login-title {
        font-size: 22px;
    }

    .form-control {
        height: 45px;
    }

    .btn-login {
        height: 45px;
    }
}
