* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: Arial;
  background-color: #3498DB;
  padding: 50px;
}

.login {
  margin: 20px auto;
  width: 300px;
}

.login-screen {
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px
}

.app-title {
  text-align: center;
  color: #777;
}

.login-form {
  text-align: center;
}

.control-group {
  margin-bottom: 10px;
  text-align: center;
}

input, textarea {
  text-align: center;
  background-color: #ECF0F1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 200;
  padding: 10px 0;
  width: 250px;
  transition: border .5s;
}

input:focus {
  border: 2px solid #3498DB;
  box-shadow: none;
}

input[type="file"] {
  padding: 10px 5px;
  width: 280px;
}

select {
  width: 176px;
}

.btn {
  border: 2px solid transparent;
  background: #3498DB;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 5px auto;
}

.btn:disabled,
.btn[disabled]{
  opacity: 0.7;
}

.btn:hover {
  background-color: #2980B9;
}

.btn-danger {
  background: #ff1616;
}

.btn-danger:hover {
  background: #e40000;
}

.login-link {
  font-size: 12px;
  color: #444;
  display: block;
  margin-top: 12px;
}

.flashes-container {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  overflow: hidden;
}

.main-screen {
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px
}

.main {
  margin: 20px auto;
  width: 500px;
}

.centered_link {
  padding: 8px 0 0 0 ;
  text-align: center;
  display: block;
  font-size: 1.17em;
}

.animated {
  /*height: 0;*/
  transition: transform 1.5s 0s, opacity 1.25s 0s;
  transform: translateX(0);
  opacity: 1;
}

.removing {
  transform: translateX(100vw);
  opacity: 0;
}

/* modify user */

.user-row {
  margin: 5px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  border-bottom: 1px solid black;
  height: 70px;
}

.username-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12%;
}

.new-username-block {
  width: 20%;
}

.access-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22%;
}

select.access-block {
  width: 100%;
}

select.pvz {
  width: 250px;
  height: 40px;
}

select.pvz_wide {
  width: 400px;
  height: 40px;
}

.radio-text {
  width: 250px;
  padding: 6px;
  margin: auto;
}

input[type="radio"] {
  width: 20px;
}

.password-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}

.btn-block {
  border: 2px solid transparent;
  background: #3498DB;
  color: #ffffff;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 10px;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18%;
  /*margin: 0 auto;*/
}

/* replace part */

.replace-row {
  margin: 5px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  border-bottom: 1px solid black;
  height: 70px;
}

.replace-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}
