@keyframes flash {
    0%   {background-color: #d3d3d3;}
    50%  {background-color: #FF0000;}
    100% {background-color: #d3d3d3;}
}

.flash {
    background-color: #ff0000;
    color: #ffffff;
    animation: flash 2s linear infinite;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 400;
    margin: 0;
    width: 100%;
    height: 100%;
}

.login-card {
    background-color: #f1f1f1;
    padding: 40px;
    border-radius: 10px;
}

.pagination {
    gap: 10px;
    display: flex;
    border-radius: 4px;
    list-style-type: none;
    padding-inline-start: 0;
}

ul.pagination li.page-item {
    display: flex;
    border-radius: 4px;
    border: 1px solid #e9eaeb;
    background-color: #fff;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: space-around;
}

ul.pagination li.page-item.active {
    display: flex;
    border-radius: 4px;
    border: 1px solid #e9eaeb;
    background-color: #03DAC6;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: space-around;
}

a.page-link {
    display: inline-flex;
    color: #000;
    text-decoration: none;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
}

.full-background {
    background-color: purple;
}

.gradient-title {
    background: -webkit-linear-gradient(#eee, #51d021);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-card {
    padding: 20px;
}
