body {
    background-color: black;
    padding: 20px;
    background-image: url('/img/fundoT16.png');
    background-position: center; /*calc(100%) center;*/
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "DM Sans";
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-conteudo {
    position: relative;
    z-index: 1;
    color: white;
}

.login-container {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(11, 14, 43, 0.612);
    background-image: linear-gradient(to bottom right, rgba(52, 75, 249, 0.2), #1a1c277c, #1a1c277c, rgba(219, 52, 249, 0.3));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
                -5px 5px 60px rgba(0, 68, 255, 0.15),
                5px -5px 60px rgba(155, 2, 166, 0.15);
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-cover{
    /*border-radius: 20px;
    border: 1px;
    border-style: solid;
    border-color: #004999;
    background-image: linear-gradient(to bottom right, rgba(52, 75, 249, 0.3), rgba(0, 0, 0, 0), rgba(52, 75, 249, 0.6));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 20px;*/
    margin-left: 100px;
    color: white;
    width: 700px;
    /* text-shadow: 0 0 50px rgb(10, 4, 57, 1),
    0 0 10px rgba(10, 4, 57, 1),
    0 0 20px rgba(10, 4, 57, 1),
    0 0 50px rgba(10, 4, 57, 1),
    0 0 50px rgba(10, 4, 57, 1); */
}

.login-logo {
    width: 150px;
    object-fit: contain;
    margin-bottom: 2rem;
    /*filter: brightness(0) invert(1);*/
}

.form-control{
color: white;
background-color: rgba(26, 28, 39, 0.216);
border-color: rgba(255, 255, 255, 0.2);
}

input{
    color: white;
}

input::placeholder {
  color: #ffffff5b !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* Use a box-shadow to create a background that matches your dark theme */
    -webkit-box-shadow: 0 0 0 30px rgb(26, 28, 39) inset !important; /* Replace #333 with your desired dark background color */
    /* Set the text color to ensure readability on the dark background */
    -webkit-text-fill-color: #fdfdfd !important; /* Replace #fdfdfd with your desired text color */
}

.form-control:focus {
    color: white;
    background-color: rgba(255, 255, 255, 0.075);
    border-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.btn-primary {
    background-image: linear-gradient(to right, #2c4ddf93, #c309d4a0);
    background-color: #007bff00;
    border: 0;
}

.btn-primary:hover {
    background-image: linear-gradient(to right, #2c4ddf, #c309d4);
}

h1, h2, h3, h4, h5, h6, p {
    font-family: "DM Sans";
}

h2{
    font-weight: 300;
}

.boldType{
    font-weight: 800;
    background-image: linear-gradient(to right, #2c4ddf, #c309d4);
    border-radius: 3px;
    padding: 0 5px;
}

@media screen and (max-width: 768px) {
    body {
        justify-content: center;
        padding: 0;
    }
    .login-cover{
        display: none;
    }
    .login-container{
        margin-left: 10px;
    }
}

.loadingContentBG{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgb(26, 28, 39);
}

.spinnerBox{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Corrige o centro real */
    font-size: 1rem;
    text-align: center;
    width: 200px;
    height: 200px;
    color: rgb(48, 52, 76)
}

#spinnerPage {
    margin-left: 20px;
    border: 6px solid rgb(48, 52, 76);
    border-top: 6px solid #0066cc;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    animation: spin2 1s linear infinite;
}

@keyframes spin2 {
    0% { transform: rotate(0deg); border-top: 6px solid #0066cc; }
    100% { transform: rotate(360deg); border-top: 6px solid #c309d4; }
}