html,
body {
  width:100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button:hover {
  background-color: #e09200;
}

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* auth */

.wrap {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-auth {
  background-color: #fff;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  width: 400px;
  margin: auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
}

.logo-admin-panel {
  width: 170px;
  margin-bottom: 30px;
}

.form-auth {
  margin-top: 10px;
}

.input-auth {
  background: #fff;
  border: 1px solid #a0a0a0;
  border-radius: 11px;
  padding-left: 11px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 19px;
  width: 300px;
}

.warning {
  color: red;
  font-size: 15px;
  font-weight: 600;
}

.input-field {
  margin-bottom: 30px;
}

.password {
  position: relative;
}

.show-password {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

.show-new-password {
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

.show-password.show {
  background: url("../images/svg/eye-show.svg") no-repeat;
  top: 5px;
  right: 55px;
}

.show-password.hide {
  background: url("../images/svg/eye-close.svg") no-repeat;
  top: 4px;
  right: 55px;
}
.show-new-password.show {
  background: url("../images/svg/eye-show.svg") no-repeat;
  top: 20px;
  right: 72px;
}

.show-new-password.hide {
  background: url("../images/svg/eye-close.svg") no-repeat;
  top: 15px;
  right: 72px;
}

.btn-auth {
  background: #ffa500;
  border-radius: 8px;
  font-weight: normal;
  font-size: 20px;
  line-height: 33px;
  color: #fff;
  border: none;
  width: 200px;
  cursor: pointer;
}

.btn-auth:hover {
  background: #da8d00;
}

.auth-remember {
  margin-bottom: 20px;
}

/* auth-checkbox */

.auth-remember input[type="checkbox"]:checked,
.auth-remember input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.auth-remember input[type="checkbox"]:checked + label,
.auth-remember input[type="checkbox"]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
}

.auth-remember input[type="checkbox"]:checked + label:before,
.auth-remember input[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  background: linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(0deg, #ffffff, #ffffff), #ffffff;
  border: 2px solid #dfdfdf;
}

.auth-remember input[type="checkbox"]:checked + label:before,
.auth-remember input[type="checkbox"]:not(:checked) + label:before {
  border-radius: 5px;
}

.auth-remember input[type="checkbox"]:checked + label:after,
.auth-remember input[type="checkbox"]:not(:checked) + label:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 17px;
  height: 7px;
  border-color: orange;
  border-style: solid solid none none;
  display: inline-block;
  border-width: 2px;
  transform: rotateZ(134deg);
}

.auth-remember input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
}

.auth-remember input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.auth-remember input[type="ckeckbox"]:checked,
.auth-remember input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.auth-remember input[type="ckeckbox"]:checked + label,
.auth-remember input[type="ckeckbox"]:not(:checked) + label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  line-height: 20px;
  cursor: pointer;
}

.auth-remember input[type="ckeckbox"]:checked + label:before,
.auth-remember input[type="ckeckbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  background-color: #ffffff;
}

/* panel */

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.14);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-telenet-admin {
  background-image: url("../images/svg/logo-admin-panel.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 55px;
  width: 150px;
  min-width: 125px;
}

.nav {
  margin-right: auto;
  margin-left: 50px;
}

.link-item-nav {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 5px;
}

.link-item-nav:hover,
.link-item-nav:focus {
  background-color: #ffa500;
  color: #fff;
}

.active-link {
  background-color: #ffa500;
  color: #fff;
}

.user-profile {
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: pointer;
}

.user-profile:after {
  content: "";
  border-color: orange;
  border-style: solid solid none none;
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  border-width: 3px;
  transform: rotateZ(135deg);
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  transition: transform 0.2s ease-in-out;
}

.user-block:hover {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  box-shadow: 0px 0px 5px black;
  height: auto;
  z-index: 10;
  border-radius: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  background-color: #fff;
}

.block-menu {
  display: none;
  margin-top: 15px;
}

.user-block:hover .block-menu {
  display: block;
}

.user-block:hover .user-profile:after {
  transform: rotateZ(315deg);
}

.user-nickname {
  color: #000;
  font-size: 18px;
}

.user-img {
  background-color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-img img {
  width: 35px;
}

.profile-menu li:not(:last-child) {
  margin-bottom: 10px;
}

.menu-link {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.menu-link:hover,
.menu-link:focus {
  text-decoration: underline;
}

.panel-content {
  display: flex;
}

.admin-list-content {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.14);
  background-color: #fff;
  padding: 20px 35px 20px;
  max-width: 760px;
  margin-right: auto;
}

.title-admin {
  margin: 0;
  font-size: 25px;
  color: #bdbdbd;
  margin-bottom: 25px;
}

.admin-list-heading {
  padding-left: 15px;
  border-bottom: 1px solid #bdbdbd;
}

.admin-list {
  padding-top: 50px;
  padding-bottom: 50px;
}

.admin-users-subtitle {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.button-access-admin {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.btn-admin-section {
  text-decoration: none;
  background-color: #ffa500;
  color: #fff;
  min-width: 295px;
  padding: 20px;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 25px;
}

.btn-admin-section:hover {
  background-color: #e69500;
}

.btn-admin-section[href=""] {
  cursor: not-allowed;
  background-color: #a1a1a1;
}

.news-content {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.44);
  background-color: #fff;
  width: 305px;
  padding: 5px 15px 0px;
}

.news-title {
  margin: 0;
  margin-top: 7px;
  font-size: 20px;
}

.info-news-title {
  margin: 0;
  margin-bottom: 5px;
  font-size: 25px;
}

.sign-news {
  margin: 0;
  margin-bottom: 15px;
}

.textarea-news {
  width: 348px;
  height: 250px;
  resize: none;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
}

.pagination {
  display: flex;
  width: 100%;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 19.48px;
  text-decoration: none;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
  border-radius: 5px;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
  border-radius: 5px;
}

.textarea-help {
  width: 350px;
  height: 150px;
  resize: none;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
}

.add-control-btn {
  background-color: #fff;
  border: 3px solid #ffa500;
  width: 107px;
  padding: 5px 4px;
  cursor: pointer;
}
.edit-control-btn {
  background: url("../images/svg/edit_news.png") no-repeat;
  width: 32px;
  height: 32px;
  border: none;
  cursor: pointer;
}
.delete-control-btn {
  background: url("../images/svg/delete_news.png") no-repeat;
  width: 32px;
  height: 32px;
  border: none;
  cursor: pointer;
}

.control-btn:hover {
  border-color: #e09200;
  color: #fff;
}

.help-block {
  padding-top: 50px;
  padding-bottom: 50px;
}

.help-content {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.14);
  background-color: #fff;
  padding: 30px 55px 30px;
}

.help-header {
  margin-bottom: 20px;
}

.help-body {
  display: flex;
}

.help-nav {
  width: 380px;
  border-right: 0px solid silver;
}

.help-menu li:not(:last-child) {
  margin-bottom: 40px;
}

.help-input {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 15px;
}

.settings-block {
  padding-top: 50px;
  padding-bottom: 50px;
}

.settings-content {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.14);
  background-color: #fff;
  padding: 20px 15px 20px;
}

.settings-header {
  margin-bottom: 20px;
}

.settings-nav {
  width: 255px;
  border-right: 1px solid silver;
}

.setting-menu li:not(:last-child) {
  margin-bottom: 15px;
}

.settings-body {
  display: flex;
}

.title-settings {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
}

.back-link {
  color: #000;
}

.setting-menu li a {
  color: #000;
  text-decoration: none;
}

.settings-options {
  margin-left: 50px;
}

.text-form {
  margin: 0;
}

.input-form {
  padding: 6px;
  font-size: 15px;
}

.input-form {
  margin-top: 15px;
  margin-bottom: 15px;
}

.btn {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.btn:disabled {
  background-color: #b3b3b3;
  cursor: default;
}

.untie-btn {
  background-color: #ff0000;
}

.untie-btn:hover {
  background-color: #d00000;
}

.setting-section {
  display: none;
}

.active a {
  font-weight: 600;
}

.active {
  display: block;
}

.title-link-accounts {
  margin: 0;
  font-size: 18px;
}

.form-input {
  margin-top: 15px;
  margin-bottom: 15px;
}

.input {
  padding: 5px 10px;
  font-size: 15px;
  margin-right: 15px;
}

.warning-linked-accounts {
  font-size: 14px;
}

.user-content {
  background-color: #ffa500;
  color: #fff;
  padding: 10px 0px;
  font-size: 18px;
  cursor: pointer;
}

.user-content:not(:last-child) {
  margin-bottom: 15px;
}

.user-control {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: default;
  /*display: none;*/
}

.active-item {
  display: block;
}

.user-control-item {
  display: flex;
  align-items: center;
}

.user-control-item:not(:last-child) {
  margin-bottom: 15px;
}

.item-active {
  display: block;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 8px 0px 24px rgb(0 0 0 / 14%);
  vertical-align:bottom;
  text-align: center;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 4;
}

.modal-active {
  display: flex;
}

.modal-close {
  background: url("../images/svg/cancel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  position: relative;
  left: 100%;
  bottom: 5px;
  cursor: pointer;
}

.modal-content {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 0px;
  padding-left: 24px;
  padding-right: 58px;
  width: 350px;
  height: 480px;
  overflow-y: auto
}

.modal-content-warning {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  padding-right: 40px;
  width: 360px;
  height: 150px;
  overflow-y: auto
}

.modal-contentedit {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  padding-right: 40px;
  width: 360px;
  height: 800px;
  overflow-y: auto;
}

.modal-heading {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 20px;
}

.title-input-modal {
  display: inline-block;
  height: 35px;
  width: 374px;
}

.text-input-check {
  margin-top: -9px;
  width: 209px;
  display: inline-block;
  float: right;
  height: 47px;
}

.modal-header {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0px;
}

.title-input p,
.text-input p {
  margin: 0;
  font-size: 20px;
}

.modal-input {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
  font-size: 15px;
}

.modal-input-edit {
  margin-top: -6px;
  display: inline-block;
  padding: 4px 0px;
  float: right;
  font-size: 15px;
  width: 60%;
}

.modal-button-select {
  margin-top: 15px;
}

/* Модальный (фон) */
.modalWin {
  text-align: center;
  display: none; /* Скрыто по умолчанию */
  position: fixed; /* Оставаться на месте */
  z-index: 999; /* Сидеть на вершине */
  left: 0;
  top: 0;
  width: 100%; /* Полная ширина */
  height: 100%; /* Полная высота */
  overflow: auto; /* Включите прокрутку, если это необходимо */
  background-color: rgb(0,0,0); /* Цвет запасной вариант  */
  background-color: rgba(0,0,0,0.4); /*Черный с непрозрачностью */
}

/* Модальное содержание */
.modalWin-content {
  position: absolute;
  display: none;
  z-index: 9999;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 400px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.modal-content-user-edit {
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 0px;
  padding-left: 24px;
  padding-right: 58px;
  width: 350px;
  height: 368px;
  overflow-y: auto
}


/* Добавить анимацию
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
*/
/* Кнопка закрытия */
.closeWin {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeWin:hover,
.closeWin:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modalWin-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.modalWin-body {padding: 50px 16px;}

.inputWin-auth {
  background: #fff;
  border: 1px solid #a0a0a0;
  border-radius: 11px;
  padding-left: 11px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 19px;
  margin-bottom: 10px;
  margin-left: 40px;
  width: 300px;
}

.modalWin-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.btnWin-auth {
  background: #ffa500;
  border-radius: 8px;
  font-weight: normal;
  font-size: 20px;
  position: absolute;
  top: 90%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  line-height: 33px;
  color: #fff;
  border: none;
  width: 200px;
  cursor: pointer;
}

.select-css { 
  font-size: 13px; 
  font-family: sans-serif; 
  font-weight: 700; 
  color: #444; 
  line-height: 1.3; 
  padding: .6em 1.4em .5em .8em; 
  max-width: 100%;
  box-sizing: border-box; 
  margin: 0;
  margin-right: 15px; 
  border: 1px solid #aaa;
   box-shadow: 0 1px 0 1px rgba(0,0,0,.04); 
  border-radius: .5em;
   -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
   background-color: #fff; 
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); 
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%; 
  margin-top: 10px;
  margin-bottom: 10px;
  }

.select-css-modal {
  font-size: 13px;
  float: right;
  display: inline-block;
  font-family: sans-serif;
  font-weight: 700;
  color: #444;
  padding: 8px;
  width: 60%;
  box-sizing: border-box;
  margin-right: 4px;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgb(0 0 0 / 4%);
  border-radius: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E), linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  margin-top: -7px;
  text-align: center;
}

   .select-css::-ms-expand { display: none; } 
   .select-css:hover { border-color: #888; } 
   .select-css:focus { border-color: #aaa; 
   box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
   box-shadow: 0 0 0 3px -moz-mac-focusring; 
  color: #222;
   outline: none; 
  } 
   .select-css option { font-weight:normal; } 
   *[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css { 
  background-position: left .7em top 50%, 0 0; 
  padding: .6em .8em .5em 1.4em; 
  }

  .btn-add-user {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  float: right;
  margin-right: 70px;
}

.btn-add-user:disabled {
  background-color: #b3b3b3;
  cursor: default;
}

table {
  width: 100%;
  border-collapse: separate; 
  border-spacing: 4px;
  }
  
  table thead tr {
  color: #ffffff; 
  font-weight: bold;
  }
  
  table thead tr td {
  border-radius: 4px 4px 0 0;
  background: #ffa500;
  }
  
  table tbody tr td {
  border: 1px solid #dc9f2f; 
  border-radius: 4px; 
  background: #ffe6b7;
  }
  
  table tbody tr td:hover {
  background: #ffffff; 
  transition-duration: 0.2s;
  }

  .work-users {
    margin-left: 50px;
  }


.div-eye{
  position: relative;
  margin: 1em;
  margin-left: 0em;
  margin-right: 2em;
}

.input-eye {
  display: block;
  width: 100%;
  height: 2.5em;
  line-height: 3em;
  border: 1px solid;
  padding: 6px;
  min-width: 165px;
  font-size: 15px;
  margin-left: 0px;
  box-sizing: border-box;
  border-width: 1px;
  border-radius: 5px;
  border-style: inset;
  border-color: rgb(133, 133, 133);
  border-image: initial;

}

.button-eye {
  position: absolute;
  top: .3em;
  right: .0em;
  height: 2.2em;
  border: 1px solid;
  text-transform: uppercase;
  width: 35px;
}

.button-eye.show {
  background: url("../images/svg/eye-show.svg") no-repeat !important;
}

.button-eye.hide {
  background: url("../images/svg/eye-close.svg") no-repeat !important;
}

.btn-edit {
  background-color: #ffa500;
  color: #fff;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-left: 38%;
  margin-top: 16px;
}

.modal-labble {
  float: left;
}

@media (max-width: 1199px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 8px 0px 24px rgb(0 0 0 / 14%);
    vertical-align:bottom;
  }
}

@media (max-width: 20cm) {

  .textarea-help {
    max-width: 350px;
    height: 150px;
    resize: none;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
  }
  .container {
    max-width: 600px;
  }
  
  body {
    position:relative;
    font-family: Roboto, sans-serif;
    box-sizing: border-box;
    display: block;
    margin: auto;
  }

  .block-auth {
    background-color: #fff;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    width: 400px;
    margin: auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  
  .logo-admin-panel {
    width: 170px;
    margin-bottom: 30px;
  }
  
  .form-auth {
    margin-top: 10px;
  }
  
  .input-auth {
    background: #fff;
    border: 1px solid #a0a0a0;
    border-radius: 11px;
    padding-left: 11px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 19px;
    width: 300px;
  }

  .news-content {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 44%);
    background-color: #fff;
    width: auto;
    padding: 5px 15px 0px;
  }

  .wrap {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
}