.custom-form-container {
    position: relative;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #1A1A1A;
    max-width: 600px;
    background-color: white !important;
    margin: 0 auto;

    h4 {
        margin-bottom: 20px;
    }

    input {
        margin-bottom: 10px;
    }

    .custom-select{
        margin-left: 30px
    }
}

.custom-email-class,
.custom-password-class {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.12);
}

.custom-class-roles-user {
    display: flex;
    justify-content: start;
}

.custom-class-roles-user .custom-admin,
.custom-class-roles-user .custom-user {
    margin: 0 10px;
}

.custom-class-roles-user label {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.custom-class-roles-user input {
    margin-right: 5px;
}

.btn {
    background-color: #006C50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #02523e;
}

.tableUser {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px;
    color: #1A1A1A;
}

.tableUser th {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #1A1A1A;
}

.tableUser th {
    background-color: #F1F1F1;
    text-align: center;
}

.tableUser td {
    text-align: center;
}

.buttons{
    display: flex;
    justify-content: start;
    align-items: center;
}

.editButton{
    margin-left: 10px;
}

.btnUserNew{
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-muted {
    color: #6c757d;
    font-style: italic;
}