@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Verdana, Geneva, Tahoma, sans-serif;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.app {
  padding: 35px 0;
  /* .app__container */
  /* .app__title */
  /* .app__form */
  /* .app__box */
  /* .app__control */
  /* .app__btn */
  /* .app__table */
  /* .app__table-striped */
}
.app__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.app__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
}
.app__form {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.app__box:not(:last-child) {
  margin-bottom: 20px;
}
.app__control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid #666;
  font-size: 18px;
  line-height: 130%;
  color: #333333;
  border-radius: 6px;
  transition: all 0.5s ease 0s;
  outline: none;
}
.app__control:focus {
  outline: 1px solid #999;
  outline-offset: 2px;
}
.app__btn {
  align-self: flex-start;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
}
.app__table {
  width: 100%;
}
.app__table th, .app__table td {
  border: 1px solid #333333;
  padding: 8px;
  font-size: 18px;
  color: #333333;
}
.app__table th {
  font-weight: 500;
  text-align: start;
}
.app__table td {
  font-weight: 400;
}
.btn {
  padding: 12px 18px;
  border-radius: 8px;
  transition: all 0.5s ease 0s;
}
.btn-primary {
  color: #fff;
  background-color: #007BFF;
  transition: all 0.5s ease 0s;
}
.btn-primary:hover {
  box-shadow: 0 5px 24px #007BFF;
}

.user-btn__delete {
  color: red;
  transition: all 0.5s ease 0s;
}
.user-btn__delete:hover {
  text-decoration: underline;
}

.error .input-field {
  border-color: red;
}

.error-label {
  display: block;
  color: red;
  margin-bottom: 10px;
  padding: 6px 0 0 18px;
}/*# sourceMappingURL=main.css.map */