@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: normal;
  src: url('/static/fonts/fonts/Open-Sans-regular/Open-Sans-regular.eot');
  src: url('/static/fonts/fonts/Open-Sans-regular/Open-Sans-regular.eot?#iefix') format('embedded-opentype'),
       local('Open Sans'),
       local('Open-Sans-regular'),
       url('/static/fonts/fonts/Open-Sans-regular/Open-Sans-regular.woff2') format('woff2'),
       url('/static/fonts/fonts/Open-Sans-regular/Open-Sans-regular.woff') format('woff'),
       url('/static/fonts/fonts/Open-Sans-regular/Open-Sans-regular.ttf') format('truetype'),
       url('/static/fonts/fonts/Open-Sans-regular/Open-Sans-regular.svg#OpenSans') format('svg');
}


.pagination {
    justify-content: center;
}

.auth-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

.login-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
}
.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
    font-family: "Open Sans", sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}
.form button {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #000000;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}
.form button:hover,.form button:active,.form button:focus {
    background: #000000;
}
.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
}
.form .message a {
    color: #000000;
    text-decoration: none;
}

.form .register-form {
    display: none;
}
.auth-container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}
.auth-container:before, .auth-container:after {
    content: "";
    display: block;
    clear: both;
}
.auth-container .info {
    margin: 50px auto;
    text-align: center;
}
.auth-container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}
.auth-container .info span {
    color: #4d4d4d;
    font-size: 12px;
}
.auth-container .info span a {
    color: #000000;
    text-decoration: none;
}
.auth-container .info span .fa {
    color: #EF3B3A;
}
body {
    background-color: #fff; /* fallback for old browsers */
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-text {
    color: #999;
    font-size: 11pt;
    font-family: "Open Sans";
}

.card-title {
    font-size: 13pt;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: #999;
    border-bottom: 2px solid #999;
}

/*alerts*/
/* The alert message box */
.alert {
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
}

.success-alert {
    padding: 20px;
    background-color: #00B16A; /* Green */
    color: white;
    margin-bottom: 15px;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}