/* CSS aprimorado para a página de login com tons de azul */

body.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #00153E, #17357D, #002467);
    font-family: 'Aller', sans-serif;
    color: #f1f1f1;
}

.navbar {
    background-color: #17357D;
    border-bottom: 2px solid #002467;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #17357D !important;
    font-weight: 600;
}

.navbar .nav-link.active {
    border-bottom: 2px solid #17357D;
}

.content {
    width: 100%;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    background-color: #17357D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.content:hover {
    transform: scale(1.02);
}

.container {
    margin-top: 20px;
}

.card.form {
    border: none;
    background-color: transparent;
}

.card-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-label {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 500;
    text-align: left;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
    padding: .300rem .65rem;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #17357D;
    box-shadow: 0 0 0 0.2rem rgba(23, 53, 125, 0.25);
}

.btn-light {
    background-color: #FFFFFF;
    color: #17357D;
    width: 100%;
    font-weight: 600;
    border: none;
    padding: 0.70rem 1.0rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-light:hover {
    background-color: #b8babd;
}

.alert {
    margin-top: 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

#success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

img {
    margin-bottom: 20px;
}

.form-text-white {
    color: #FFFFFF;
    font-size: 10px;
}

.form-text {
    font-size: 10px;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


#descriptionInput {
    width: 100%; /* Ajusta a largura para ocupar 100% do espaço disponível */
    height: 100px; /* Define a altura como 100 pixels */
    resize: vertical; /* Permite que o usuário ajuste a altura manualmente */
}

/* Overlay de carregamento inicial */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #002467, #17357D, #00153E);
    z-index: 9999;
}

.overlay-content .logo {
    width: 500px;
    height: auto;
}

/* Esconde a tela de login inicialmente */
#content {
    display: none;
}

.modal-content {
    background-color: #17357D;
    color: white;
    padding: 20px;
}