/* Nova Paleta de Cores Sólidas */
:root {
    --primary-color: #313638;
    --secondary-color: #F09D51;
    --light-color: #E0DFD5;
    --light-gray: #E8E9EB;
}

body {
    background: #ffffff !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

#loginForm input {
    background: white !important;
    border: 2px solid #000000 !important;
}

.input-personalizado{
    background: white !important;
    border: 2px solid #000000 !important;
}

.login-container {
    background: transparent !important;
    width: 90%;
    max-width: 800px;
    /* box-shadow: 0 20px 40px rgba(49, 54, 56, 0.2); */
    border-radius: 20px;
    display: flex;
    /* border: 0px solid var(--light-color); */
}

.left-panel {
    background: var(--light-color);
    border-right: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px 0 0 20px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--secondary-color);
    z-index: 1;
    box-shadow: 0 10px 20px rgba(49, 54, 56, 0.3);
}

.do-icon {
    font-size: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.4;
    filter: blur(1px);
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.triangle.top-left {
    border-width: 0 50px 50px 0;
    border-color: transparent var(--primary-color) transparent transparent;
    top: 10%;
    left: 10%;
}

.triangle.bottom-right {
    border-width: 50px 0 0 50px;
    border-color: transparent transparent transparent var(--secondary-color);
    bottom: 10%;
    right: 10%;
}

.circle {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
}

.circle.bottom-right {
    bottom: 20%;
    right: 5%;
}

.square {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 8px;
}

.square.top-right {
    top: 15%;
    right: 15%;
}

/* Outras formas para adicionar se quiser mais detalhes */
.shape.triangle.top-right {
    border-width: 0 0 40px 40px;
    border-color: transparent transparent #4169e1 transparent;
    top: 5%;
    right: 5%;
}

.shape.triangle.bottom-left {
    border-width: 40px 40px 0 0;
    border-color: #8a2be2 transparent transparent transparent;
    bottom: 5%;
    left: 5%;
}


.right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border-radius: 0 20px 20px 0;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(49, 54, 56, 0.1);
}

.input-group-text {
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-right: none;
    color: var(--primary-color);
}

.form-control {
    border: 2px solid var(--primary-color);
    border-left: none;
    background: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(240, 157, 81, 0.25);
    background: white;
}

.login-button {
    background: var(--primary-color);
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(49, 54, 56, 0.3);
}

.login-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(240, 157, 81, 0.4);
}

.login-button:active {
    transform: translateY(0);
}

.forgot-password a {
    color: #6c757d; /* Cor para o link de esqueceu a senha */
    font-size: 0.9rem;
}

.create-account-divider hr {
    border-top: 1px solid #dee2e6;
    margin-bottom: 0.5rem;
}

.create-account-divider p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .left-panel {
        display: none; /* Esconde o painel esquerdo em telas menores */
    }
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

/* Estilos para modais de usuários */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(49, 54, 56, 0.2);
}

.modal-header {
    background: var(--light-color);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 15px 15px 0 0;
}

.modal-title {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--light-gray);
    border-radius: 0 0 15px 15px;
}

/* Estilos para itens dos modais */
.modal-item {
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray) !important;
}

.modal-item:hover {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 2px 8px rgba(240, 157, 81, 0.15);
    transform: translateY(-1px);
}

/* Botões de ação nos modais */
.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-outline-info:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Badges personalizados */
.badge.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.badge.bg-info {
    background-color: var(--primary-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}