:root {
    --rosa: #ff3d60;
}

html {
    height: -webkit-fill-available;
    display: flex;
    justify-content: center;
}

body {
    cursor: default;
    border: none;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-width: 100%;
    font-family: "AnguitaSansRegular", "Oswald", sans-serif;
    -webkit-backface-visibility: hidden;
    background-color: var(--verdeescuro);
    background-color: #fff;
    overflow-x: hidden;
}

input:-internal-autofill-selected {
    background-image: none !important;
    background-color: transparent !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--verdeescuro) inset;
    -webkit-text-fill-color: inherit !important;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--verdeescuro) inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
}

input:-webkit-autofill::webkit-input-placeholder {
    color: #fff;
}

input:-webkit-autofill:focus {
    outline: none;
}

input:-moz-autofill:focus {
    outline: none;
}

input:-ms-autofill:focus {
    outline: none;
}

*:focus {
    outline: none;
}

.login-container--all {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    max-width: 400px;
    width: 100%;
}

.login-box h2 {
    color: #333;
}

.form-group {
    margin: 15px 0;
    text-align: left;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.container {
    max-width: 1000px;
    padding: 20px 0;
}

/* Estilos para o menu */
.menu {
    background-color: #333;
    /* Cor de fundo do menu */
    color: #fff;
    /* Cor do texto no menu */
    padding: 10px;
    /* Espaçamento interno do menu */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    /* Espaçamento entre os links */
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
    /* Sublinhar o link ao passar o mouse */
}

#add-user {
    margin-bottom: 20px;
}

/* Estilo da tabela */
#users-table {
    width: 100%;
}

/* Estilo do modal */
.modal-content {
    border-radius: 10px;
}
