/*login.css*/
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 20% 30%, #1e3a8a, #020617);
    color: #fff;
}
.login-container {
    display: flex;
    height: 100vh;
}

.brand-mobile {
    display: none;
}

/* ESQUERDA */
.login-brand {
    flex: 1;
    background: #060621;
    background: linear-gradient(180deg,rgba(6, 6, 33, 1) 48%, rgba(29, 39, 114, 1) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}



.brand-content {
    max-width: 420px;
}

.brand-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
}
.brand-subtitle {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
}

.brand-domain {
    font-size: 18px;
    opacity: 0.8;
}


/* DIREITA */
.login-area {
    flex: 1;
    background: linear-gradient(180deg,rgba(6, 6, 33, 1) 48%, rgba(29, 39, 114, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-area::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #2563eb;
    filter: blur(120px);
    opacity: 0.3;
    z-index: 0;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.login-header h2 {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input {
    width: 100%;
      padding: 10px 10px 10px 38px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.form-group .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  font-size: 16px;
}


.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

.btn-login {
    width: 100%;
    padding: 12px;
    color: #fff;
    background: #060621;
    background: linear-gradient(90deg,rgba(6, 6, 33, 1) 48%, rgba(29, 39, 114, 1) 100%);
    border: none;
    height: 52px;
    border-radius: 10px;
    font-weight: 600;

    font-family: 'Inter', sans-serif; /* Ou Montserrat */
    font-weight: 600;
    letter-spacing: 1px;

    align-items: center;
    justify-content: center;
    gap: 8px;


    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(11, 26, 74, 0.45);
}


.form-options {
    font-size: 14px;
    margin-bottom: 15px;
}

/* ============================================
   MOBILE CORRIGIDO (VERSÃO PROFISSIONAL)
============================================ */
@media (max-width: 768px) {

    body {
    background: #060621;
    background: linear-gradient(180deg,rgba(6, 6, 33, 1) 48%, rgba(29, 39, 114, 1) 100%);
    }

    .login-container {
        flex-direction: column;
        min-height: 100vh;
    }


    .brand-mobile {
        display: block;
        text-align: center;
        padding-top: 20px;
        margin-bottom: 0;
    }

    .brand-mobile .brand-title {
        font-size: 45px;
        font-weight: 700;
        /* margin-bottom: 5px; */
        color: #ffffff;
        letter-spacing: 2px;
    }


    .brand-mobile .brand-domain {
        font-size: 13px;
        letter-spacing: 0.9px;
        color: #ffffff;
        margin: 0;
    }

    .brand-mobile p {
        font-size: 13px;
        color: #ffffff;
        margin: 0;
    }

    /* ESCONDE TEXTOS LONGOS */
    .brand-mobile p:nth-child(3),
    .brand-mobile p:nth-child(4) {
        display: none;
    }

    /* REMOVE BRAND */
    .login-brand {
        display: none !important;
    }

    /* ÁREA */
    .login-area {
        width: 100%;
        padding: 20px;
        background: transparent;
    }

    /* REMOVE GLOW */
    .login-area::before {
        display: none;
    }

    /* CARD LIMPO */
    .login-card {
        background: #ffffff;
        color: #000;

        border-radius: 16px;
        padding: 25px 20px;

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: none;
    }

    /* HEADER */
    .login-header h2 {
        font-size: 22px;
        margin-top: 5px;
        color: #111;
    }

    .login-header span {
        font-size: 13px;
        color: #666;
    }

    /* INPUTS (FIX PRINCIPAL) */
    .form-group input {
        background: #f1f3f5;
        border: 1px solid #ddd;
        color: #000;

        height: 52px;
        border-radius: 10px;
        font-size: 16px;
    }

    .form-group input::placeholder {
        color: #888;
    }

    .form-group input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
    }

    /* ICONES */
    .form-group .icon {
        color: #000000;
    }

    .toggle-password {
        color: #666;
    }

    /* CHECKBOX */
    .form-options {
        font-size: 13px;
        color: #444;
    }

    /* BOTÃO */
    .btn-login {
        background: linear-gradient(90deg,rgba(6, 6, 33, 1) 48%, rgba(29, 39, 114, 1) 100%);
        height: 52px;
        font-size: 16px;
        border-radius: 10px;
    }

    /* ESPAÇAMENTO */
    .form-group {
        margin-bottom: 18px;
    }
}