.app-header {
    padding: 9px calc(27/1440 * 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 14px -5px rgba(0, 0, 0, 0.15)
}

.app-title {
    font-weight: 700;
    font-size: 28px;
}

.form-custom {
    width: 710px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.19);
    border-radius: 20px;
}

.label-1 {
    color: #464646;
    font-size: 13px;
    line-height: 15.23px;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    padding: 13px 20px;
    font-size: 13px;
}

.form-input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #7C7C7C;
    opacity: 1;
    /* Firefox */
}

.form-input:-ms-input-placeholder {
    color: #7C7C7C;
    opacity: 1;
}

.form-input::-ms-input-placeholder {
    color: #7C7C7C;
    opacity: 1;
}

.form-input-in-checkbox {
  border: 1px solid #EAEAEA;
  border-radius: 5px;
  padding: 0px 20px;
  font-size: 13px;
}

.form-input-2 {
    width: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    padding: 10px 7px;
    font-size: 13px;
    font-weight: 700;
}

.form-input-2:disabled {
    background: #E8E8E8;
}


/* Custom checkbox */


/* The container-checkbox */

.container-checkbox {
    display: block;
    position: relative;
    padding-left: 21px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #EAEAEA;
    border-radius: 3px;
}


/* On mouse-over, add a grey background color */

.container-checkbox:hover input~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.container-checkbox input:checked~.checkmark {
    background-color: #1AA0E9;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.container-checkbox input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.container-checkbox .checkmark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-submit-1 {
    width: 100%;
    font-weight: bold;
    font-size: 13px;
    padding: 12px 0px 10px 0px;
    border-radius: 6px;
    margin-top: 20px;
}

.btn-submit-2 {
    width: 100%;
    font-weight: bold;
    font-size: 13px;
    padding: 10px 0px;
    border-radius: 6px;
    margin-top: 5px;
}

.btn-blue {
    background: #1AA0E9;
    color: white;
}

.forgot-password {
    font-size: 12px;
    text-decoration: underline;
    font-weight: 700;
    display: block;
    text-align: center;
}

.text-error {
    font-size: 10px;
    color: #dc3545;
    margin-top: 5px;
}

.text-success {
    font-size: 12px;
    font-weight: bold;
    color: #28a745;
}

.div-center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 51px);
}

.logout-container {
    cursor: pointer;
    user-select: none;
}

.logout-dropdown {
    position: absolute;
    top: 50px;
    padding: 13px;
    background-color: white;
    box-shadow: 0px 4px 15px -2px rgba(0, 0, 0, 0.19);
    right: calc(27/1440 * 100%);
}

.logout-dropdown .item {
    display: flex;
    align-items: center;
    color: #4F4F4F;
}


/* Custom Pagination */

.pagination {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 20px 0px 0px 0px;
    list-style-type: none;
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
}

.pagination li {
    padding: 8px 12px;
}

.pagination li a {
    color: #464646;
}

.pagination li.active {
    color: white;
    background: #1AA0E9;
    border-radius: 5px;
}