:root {
  --wWidth: 100%;
}    
.grid-login {
  background-color: #333743;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  grid-template-areas:
    "top     top     top"
    "lside   center  rside"
    "bottom  bottom  bottom";
  grid-auto-flow: column;
  height: 100%;
}

.grid-box {
  display: grid;
  grid-column: 2/3;
  grid-row: 2/3;
}

.grid-input-box {
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: auto;
  grid-template-columns: 1fr;
  margin: 0 0 15px 0;
  position: relative;
}

.grid-input-box label {
  color: #ffffff93;
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 4px;
}

.grid-input-box input {
  background: none;
  border: none;
  border-bottom: 1px solid #a9a9a9;
  border-radius: 6px;
  background-color: navajowhite;
  font-size: 1.1rem;
  outline: none;
  padding: 2px 0 4px 4px;
  position: relative;
  width: var(--wWidth);
}
.grid-input-box input:focus {
  /* font-weight: 700;*/
}
.grid-input-box p {
  width: var(--wWidth);
}
.grid-input-box button { /* Generic button */
  background-color: navajowhite;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 #50894a;
  color: #363a45;
  display: grid;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 5px 0 5px 0;
  padding: 5px;
  position: relative;
  width: var(--wWidth);
}

.grid-input-box-small {
  color: #ffffff93;
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 4px;
  height: 30px;
}

.grid-input-box-small button {
  background-color: skyblue;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 #50894a;
  color: #363a45;
  display: grid;
  font-size: 1.1rem;
  //font-weight: bold;
  margin: 0;
  padding: 5px 0;
  position: relative;
  width: var(--wWidth);
  height:100%;
}

.button-red {
  background-color: red;
}

button:hover {
  cursor: pointer;
}
