/* Adicione seu CSS aqui */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    /*background: url('../img/login/home-bg-boxexpress-b.jpg') no-repeat center center fixed;*/
    background: linear-gradient(135deg, #001948, #FF7A52);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    user-select: none; /* Impede a seleção de texto */
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255); /* Fundo mais claro rgba(250, 249, 249, 0.9) */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-box {
    text-align: center;
    width: 100%;
}

.logo {
    width: 100%;
    max-width: 160px; /* Tamanho padrão para telas pequenas */
    height: auto;
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/*.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px 40px 10px 50px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.input-group .input-group-text {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
    background: none;
    border: none;
    color: #aaa;
    z-index: 1;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 15px;
    font-size: 16px;
    color: #aaa;
    transition: 0.2s ease;
    pointer-events: none;
    opacity: 1;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    opacity: 0;

}

.input-group input::placeholder {
    color: transparent;
}

.input-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 1;
}

.input-group .toggle-password:hover {
    color: #555;
}*/

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px 40px 10px 50px; /* Espaço para o ícone */
    border: 1px solid #ddd; /* Cor de borda padrão */
    font-size: 16px;
    transition: border-color 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; /* Fundo branco */
}

/* Efeito de fundo com gradiente claro e borda ao focar */
.input-group input:focus {
    background: linear-gradient(135deg, #e0f7fa, #b3e5fc, #81d4fa); /* Gradiente azul claro no fundo */
    border-image-source: linear-gradient(135deg, #0f3858, #1A5788, #2196F3); /* Gradiente na borda */
    border-image-slice: 1;
    border-width: 0.8px;
    border-style: solid;
    box-shadow: 0 0 8px rgba(33, 150, 243, 0.5); /* Efeito de brilho suave */
}

/* Estilização do ícone dentro do input */
.input-group .input-group-text {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
    background: none; /* Remove fundo do ícone */
    border: none; /* Remove borda do ícone */
    color: #aaa;
    z-index: 1; /* Para garantir que fique acima do input */
}

/* Estilização do label dentro do input */
.input-group label {
    position: absolute;
    left: 10px;
    top: 15px;
    font-size: 16px;
    color: #aaa;
    transition: 0.2s ease;
    pointer-events: none;
    opacity: 1;
}

/* Quando o input é focado ou preenchido, o label some */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    opacity: 0;
}

/* Ocultar o placeholder */
.input-group input::placeholder {
    color: transparent;
}

/* Estilização do ícone de visibilidade de senha */
.input-group .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    z-index: 1;
}

/* Efeito de hover no ícone de visibilidade de senha */
.input-group .toggle-password:hover {
    color: #555;
}

.options {
    display: flex; /* Mantenha o flexbox para alinhamento se necessário */
    align-items: center; /* Alinha verticalmente no centro, opcional */
    margin-bottom: 15px; /* Espaçamento inferior */
    justify-content: flex-start; /* Alinha o conteúdo à esquerda */
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #f7f6f6; /* Cor do texto em amarelo C9B95D*/
    background: linear-gradient(135deg, #001948, #274c7f, #FF7A52);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden; /* Mantém o efeito dentro do botão */
    transition: transform 0.2s ease, background 0.3s ease;
}

/* Efeito de flash ao passar o mouse */
.submit-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Brilho branco um pouco mais sutil */
    transform: skewX(-45deg); /* Inclinação do efeito */
    transition: left 0.5s ease-in-out;
}

/* Animação ao passar o mouse */
.submit-btn:hover::after {
    left: 100%;
}

/* Efeito de realce ao passar o mouse */
.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1a2e49, #3e5c8f, #FF7A52);
}

.footer {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}

.footer a {
    color: #555;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .login-container {
        padding: 15px;
        margin: 10px;
        max-width: 90%;
    }
    .login-title {
        font-size: 20px;
    }
    .input-group input {
        font-size: 15px;
    }
}

.alert-message {
    padding: 15px; /* Espaçamento interno */
    border-radius: 5px; /* Cantos arredondados */
    margin: 20px 0; /* Espaçamento externo */
    display: none; /* Inicialmente escondido */
    font-family: Arial, sans-serif; /* Fonte */
    min-height: 60px; /* Altura mínima para evitar que os inputs desçam */
}

/*timer na pagina de login se nao fizer login é redirecionado para o site oficial*/
#timer {
    font-size: 10px;
    color: #333;
    padding: 5px;
    /*background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-top: 5px;*/
    text-align: center;
}