﻿/* Reset e Fundo */
.modern-dolphin-body {
    background: #06090f !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Camada da Imagem de Fundo - SOLUÇÃO DEFINITIVA PARA BORDA */
.login-full-background {
    position: relative;
    background-color: #06090f !important;
    background-image: url('../images/banner-bg.png') !important;
    /* 'cover' garante que a imagem preencha cada pixel da tela */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

    /* Máscara para suavizar as bordas e focar no centro */
    .login-full-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Este degradê radial "apaga" as bordas da imagem, integrando-as ao fundo escuro */
        background: radial-gradient(circle at center, transparent 0%, #06090f 95%) !important;
        z-index: -1;
    }

/* Fix do Logo */
.fixed-logo-login {
    max-width: 140px !important;
    height: auto !important;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
}

/* O Card de Vidro - Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    z-index: 2;
}

/* Grupos de Input - Transparência do briefing */
.custom-input-group {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    transition: 0.3s;
}

    /* Remove o fundo branco do preenchimento automático (Chrome/Edge/Safari) */
    .custom-input-group input:-webkit-autofill,
    .custom-input-group input:-webkit-autofill:hover,
    .custom-input-group input:-webkit-autofill:focus {
        -webkit-text-fill-color: white !important;
        -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
        transition: background-color 5000s ease-in-out 0s;
    }

    /* Garante que ao digitar o fundo continue transparente */
    .custom-input-group input:focus,
    .custom-input-group input:active {
        background-color: transparent !important;
        color: white !important;
    }



/* Estilização do botão do select para modo escuro */
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select .dropdown-toggle:active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Estilização da lista de opções (o menu que abre) */
.bootstrap-select .dropdown-menu {
    background-color: #0a192f !important; /* Cor combinando com o fundo */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

    .bootstrap-select .dropdown-menu li a {
        color: white !important;
    }

        .bootstrap-select .dropdown-menu li a:hover {
            background: rgba(59, 130, 246, 0.2) !important;
        }







    .custom-input-group:focus-within {
        border-color: rgba(59, 130, 246, 0.5) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .custom-input-group input {
        background: transparent !important;
        border: none !important;
        color: white !important;
        width: 100%;
        padding: 12px 0;
        outline: none !important;
    }

        .custom-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.2) !important;
        }

/* Botão Moderno */
.btn-dolphin-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    color: white !important;
    border: none !important;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* Remove o fundo branco do botão do dropdown */
.bootstrap-select > .dropdown-toggle,
.bootstrap-select > .dropdown-toggle:focus,
.bootstrap-select > .dropdown-toggle:active,
.bootstrap-select > .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Ajusta o ícone da setinha para branco */
.bootstrap-select .dropdown-toggle .filter-option-inner-inner,
.bootstrap-select .bs-caret {
    color: white !important;
}

/* Estiliza a lista que abre (o menu) */
.bootstrap-select .dropdown-menu {
    background-color: #0a192f !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

    /* Estiliza cada item da lista */
    .bootstrap-select .dropdown-menu li a {
        color: white !important;
        background: transparent !important;
    }

        .bootstrap-select .dropdown-menu li a:hover {
            background: rgba(59, 130, 246, 0.2) !important;
        }
