/* Brain Theme Login */
body {
    background: #000000;
    /* Black Theme */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#container-email_senha {
    background: transparent !important;
    justify-content: center;
    /* Center vertically */
    min-height: 100vh;
    padding-bottom: 20px;
    /* Space at bottom */
}

.background-image {
    display: none !important;
}

#logo-container {
    padding-top: 2vh !important;
    /* Reduced padding */
    transform: none !important;
    /* Remove default transform */
    margin-bottom: 20px;
    opacity: 1 !important;
    /* Ensure visible */
    animation: none !important;
    /* Remove animation interference */
    width: 100%;
    display: flex;
    justify-content: center;
}

#logo1 {
    width: auto;
    max-width: 80%;
    /* Permite ocupar até 80% da largura do container */
    height: auto;
    max-height: 150px;
    /* Altura máxima razoável */
    object-fit: contain;
}

#container-form {
    background: rgba(30, 41, 59, 0.7) !important;
    /* Darker glass - Blue-ish */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(56, 189, 248, 0.2) !important;
    /* Blue border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    max-height: 70vh;
    /* Allow scrolling on small screens */
    overflow-y: auto;
    margin-top: 10px !important;
    /* Closer to logo */
    width: 90%;
    max-width: 400px;

    /* Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 189, 248, 0.5) rgba(30, 41, 59, 0.5);
}

/* Webkit Scrollbar Styling */
#container-form::-webkit-scrollbar {
    width: 6px;
}

#container-form::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
}

#container-form::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.5);
    border-radius: 10px;
}

.form-label {
    color: #f8fafc !important;
    /* Light text */
    font-weight: 500;
}

#version-display {
    position: fixed !important;
    bottom: 10px !important;
    left: 10px !important;
    top: auto !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-control,
.form-select {
    background: rgba(15, 23, 42, 0.6) !important;
    /* Dark input bg */
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    color: #f8fafc !important;
    border-radius: 10px !important;
}

.form-control:focus,
.form-select:focus {
    background: rgba(15, 23, 42, 0.8) !important;
    border-color: #38bdf8 !important;
    /* Sky blue */
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #38bdf8, #2563eb) !important;
    /* Blue gradient */
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4) !important;
}