.tablewrapper {
	position: relative;
}

.Table {
	display: table;
}

.Title {
	display: table-caption;
	text-align: center;
	font-weight: bold;
	font-size: larger;
}

.Heading {
	display: table-row;
	font-weight: bold;
	text-align: center;
}

.Row {
	display: table-row;
}

.Cell {
	display: table-cell;
	border-width: thin;
	padding-left: 5px;
	padding-right: 5px;
}

.Cell.rowspanned {
	position: relative;
	top: 0;
	bottom: 0;
	width: 100px;
}

.Cell.empty {
	border: none;
	width: 100px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap');

input {
  caret-color: red;
}

body {
  margin: 0;
  padding: 10px;
  min-height: 100vh;
  /*width: 100vw;
  height: 100vh;*/
  background: #ecf0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  /*text-align: center;
  place-items: center;
  overflow: hidden;*/
  font-family: 'Poppins', sans-serif;
}

.container {
  position: relative;
  width: 100%;
  max-width: 390px;
  min-height: 550px;
  border-radius: 20px;
  padding: 30px 20px;
  box-sizing: border-box;
  background: #ecf0f3;
  box-shadow: 14px 14px 20px #cbced1, -14px -14px 20px white;
  margin: 20px auto;
}

.brand-logo {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 20%;
  margin: auto;
  /*box-sizing: border-box;
  box-shadow: 7px 7px 10px #cbced1, -7px -7px 10px white;*/
}

.brand-title {
  margin-top: 10px;
  font-weight: 900;
  font-size: 1.8rem;
  color: #B51A1A;
  letter-spacing: 1px;
  text-align: center;
}

/*.inputs {
  text-align: left;
  margin-top: 30px;
}*/

.inputs .ancho-total {
  display: block !important;
  width: 100% !important;
  position: relative;
  margin-bottom: 15px;
}

label, input, button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

label {
  margin-bottom: 4px;
}

label:nth-of-type(2) {
  margin-top: 12px;
}

input::placeholder {
  color: gray;
}

input {
  background: #ecf0f3;
  padding: 10px;
  padding-left: 20px;
  height: 50px;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

button {
  color: white;
  margin-top: 20px;
  background: #8A1515 !important;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 6px 6px 6px #cbced1, -6px -6px 6px white;
  transition: 0.5s;
}

button:hover {
  box-shadow: none;
  background: #c91f1f !important;
}

h1 {
  position: absolute;
  top: 0;
  left: 0;
}