html {scroll-behavior: smooth;}

body{
    background-color: #4e2d2d;
}
header,
.header-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    height: 130px;
    background-color: #8a2a4f;
    color: #fff;
    font-size: 70px;
}
header i {margin-right: 10px;}

.header-2 { 
    height: 30px;
    background-color: #e2dfdf;
    color: #8a2a4f;
}

.crud-system,
.crud-table {background-color: #e9e9e9;}

.crud-system label {color: #19524f; font-size: 18px;}

.my-btn,
.table-head  {
    background-color: #1f3d66e8;
    color: #fff;
}

.my-btn {
    border-radius: 20px;
    cursor: pointer;
}

.my-btn:hover {
    background-color: #fff;
    color: #8a2a4f;
    border: 1px solid #8a2a4f;
}

.form-group span,
#empty-input-alert {color: red;}

.fas {cursor: pointer;}



.text-green {color: #334e74;}

/* Media Query */
@media (max-width:992px)
{
    .crud-system,
    .crud-table {width: 100% !important;}

    header {height: 100px;}

    .crud-system label {font-size: 15px;}
}