.alert {
    display: none;
    justify-content: center;
    border-radius: 5px;
}

.alert #alertMessage {
    text-align: center;
    color: #ffffff;
    padding: 5px;
}

.alert #alertMessage p {
    font-size: 24px;
}

.headerTitle {
    text-align: center;
    text-align: center;
    background: #cd7979;
    padding: 10px;
    margin: 0;
    margin-bottom: 10px;
    color: white;
    border-radius: 10px;
}

.mainForm {
    display: grid;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.mainForm input {
    width: auto;
}

.mainForm textarea {
    width: auto;
    height: 200px;
}

.loginRegester {
    display: block;
}

.loginRegester label {
    display: flex;
    margin-top: 5px;
    margin-bottom: 15px;
}

.loginRegester input {
    width: 100%;
    border: 0;
    outline: 0;
    transition: all 200ms linear;
    border-bottom: 1px solid #212121;
}

.loginRegester input:focus {
    border-bottom-color: #007bff;
    /* Or your preferred brand color */
}

.loginRegester .button {
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 15px;
}

.loginRegester .button:hover {
    color: #ffffff;
}

.mainForm button {
    width: 100%;
}

.success {
    background-color: #158f1b;
}

.primary {
    background-color: #0641e2;
}

.danger {
    background-color: #f86449;
}

.light {
    background-color: #dbdbdb;
}

.dark {
    background-color: #242424;
}

/* Button hover */
.success:hover {
    background-color: #0d5e11;
}

.primary:hover {
    background-color: #032b9b;
}

.danger:hover {
    background-color: #a31b02;
}

.light:hover {
    background-color: #c2c1c1;
}

.dark:hover {
    background-color: #030303;
}

.button {
    padding: 10px;
    border: none;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.messageContainer {
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}

.messageContainer .title {
    padding: 10px;
}

.messagePrimary {
    background-color: #0641e2;
}

.messageDanger {
    background-color: #f86449;
}

.messageSuccess {
    background-color: #209326;
}

.messageContainer li {
    text-align: start;
}

.ic_edit::before {
    content: "✎ ";
}

.ic_delete::before {
    content: "🗑 ";
}

.ic_block::before {
    content: "🛇 ";
}

.ic_phone::before {
    content: "☎ ";
}

.ic_success::before {
    content: "✓ ";
}

.ic_cloce::before {
    content: "✖ ";
}

.ic_add::before {
    content: "✚ ";
}

.ic_home::before {
    content: "🏠︎ ";
}

.ic_about::before {
    content: "🛈 ";
}

.ic_terms::before {
    content: "📜 ";
}

.ic_contact::before {
    content: "🗨 ";
}