* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #f3f6f8;
    font-family: 'Cairo', sans-serif;
    padding-bottom: 2rem;
}

a {
    text-decoration: none;
}

.red-text {
    color: #ab192d;
}

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

.container {
    width: 100%;
    max-width: 1150px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

img {
    width: 100%;
    max-height: 100%;
    display: block;
}

p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.logo {
    width: 150px;
    margin: 2rem auto;
}

.form {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.form-group.required label {
    position: relative;
}

.form-group.required label:after {
    content: '*';
    position: absolute;
    top: 0;
    left: -12px;
    color: #ff0000;
}

.form-group .input-group {
    margin-top: 8px;
}

.form-group .input-group input, select {
    font-size: .875rem;
    line-height: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-inline: 0.75rem;
    background-color: rgba(243, 246, 248, 1);
    border: 1px solid rgba(217, 224, 230, 1);
    border-radius: 0.375rem;
    width: 100%;
    -webkit-appearance: none;
    font-family: inherit;
}

.form-group .input-group input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
    outline: 3px solid transparent;
}

.rights {
    font-size: .8rem;
}

button {
    font-family: inherit;
    color: #ffffff;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    background-color: #b1283f;
    border-radius: 0.375rem;
    width: 100%;
    height: 46px;
    -webkit-appearance: button;
    cursor: pointer;
    border: 0;
    margin-top: 1rem;
}

.success {
    border-top: 4px solid #43b900;
}

.success p {
    line-height: 1.6;
    margin-bottom: 0;
}

.error {
    background-color: #ffedf0;
    border: 1px solid #f8bec6;
    color: #ab192d;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.error p {
    margin: 0;
    font-size: .875rem;
    text-align: left;
}

.table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0 2px 5px -1px, rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}

.table * {
    word-wrap: break-word;
}

.table thead tr, .table tfoot tr {
    background-color: #ffffff;
    text-align: right;
}

.table thead tr th, .table tfoot tr th {
    font-size: .9rem;
    font-weight: 500;
    color: #000000;
    padding: .9rem 1rem;
}

.table thead {
    border-bottom: 1px solid #ddd;
}

.table tfoot {
    border-top: 1px solid #ddd;
}

.table tbody tr:nth-child(odd) {
    background-color: #efefef;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table tbody tr td {
    font-size: 0.9rem;
    vertical-align: top;
    padding: 12px 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination li {
    list-style: none;
    margin: 0 5px;
}

.pagination li.active a {
    background-color: #b1283f;
    color: #fff;
    border-radius: 3px;
}

.pagination li a {
    display: block;
    padding: 5px 10px;
    background-color: #f8f9fa;
    color: #333;
    border-radius: 3px;
    text-decoration: none;
}

.pagination li a:hover {
    background-color: #b1283f;
    color: #fff;
}

.btn {
    background-color: #b1283f;
    padding: .5rem 1rem;
    color: #fff;
    margin-bottom: 1rem;
    border-radius: .25rem;
    display: inline-block;
    font-size: .875rem;

}