* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}
.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.form-section {
  flex: 1 1 30%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-color: #fff;
}
.form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.input-phone {
  font-size: 2rem;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  width: 70%;
  display: inline-block;
  text-align: center;
}
.form .button {
  font-size: 1.75rem;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  width: 12%;
  cursor: pointer;
  max-width: 56px;
  display: inline-block;
}
.form .button:hover {
  transform: scaleX(-1);
  /* background-color: #99D0F7;
  border-color: cyan;
  color: #fff; */
}
.form .button:active {
  background-color: rgb(35, 181, 52);
  border-color: rgb(3, 190, 3);
  color: #fff;
}
.content-section {
  flex: 1 1 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  text-align: center;
}
.logo {
  height: 40px;
  width: 100%;
  top: 0;
  position: absolute;
}
.logo-img {
  max-height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-edit {
  cursor: pointer;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-radius: 100px;
  display: inline-block;
  font-size: 1.1rem;
}

.icon-edit:hover {
  transform: rotate(45deg);
}

.icon-edit:active {
  transform: rotate(90deg);
}

.icon-cancel {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100px;
  display: inline-block;
  font-size: 1.1rem;
}

.icon-cancel:hover {
  transform: scale(1.25)
}

.icon-cancel:active {
  transform: scale(.85);
}

/* Show */
.showClient {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 4px 4px 7px 0px rgba(0,0,0,0.20);
  -webkit-box-shadow: 4px 4px 7px 0px rgba(0,0,0,0.20);
  -moz-box-shadow: 4px 4px 7px 0px rgba(0,0,0,0.20);
  min-width: 80%;
  position: relative;
}
.show-name {
  font-size: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.20);
  margin-bottom: .5rem;
}
.show-phone {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.show-suc {
  font-size: 1.5rem;
  color: rgba(0,0,0,0.70);
  margin-bottom: 1rem;
}
.show-err {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.70);
  margin-bottom: 1rem;
  font-style: italic;
}
.show-date {
  font-size: .75rem;
}

.extendedDiv {
  width: 80%;
}





.underlined {
  border-bottom: 1px solid rgba(0,0,0,0.20);
}
.formItem {
  position: relative;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  height: 43px;
  margin-top: 15px;
}
.formItem label {
  font-size: .75rem;
  position: absolute;
  left: 20px;
  top: -7px;
  color: rgba(0,0,0,0.70);
  background-color: #fff;
  padding: 0 10px;
}
.formItem input {
  width: 100%;
  font-size: 2rem;
  padding: 3px;
  text-align: center;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  color: rgba(0,0,0,1);
}
.readonly {
  color: rgba(0,0,0,0.50) !important;
}
.captura .button {
  font-size: .9rem;
  font-weight: bold;
  display: inline-block;
  width: auto;
  margin-top: 15px;
  background-color: rgba(0,0,0,0.1);
  padding: 10px 21px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.60);
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.60);
  -moz-box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.60);
}

.captura .button:hover {
  background-color: #99D0F7;
  border-color: cyan;
  color: #fff;
}
.captura .button:active {
  background-color: rgb(35, 181, 52);
  border-color: rgb(3, 190, 3);
  color: #fff;
}