*,
*:before,
*:after {
  box-sizing: border-box;
}

.line {
  border: 3px solid red;
  width: 100%;
}

/****** Styling for the Layout ***********/
.wrapper {
  background-color: rgb(247, 244, 244);
  list-style-type: none;
  padding: 0;
  border-radius: 5px;
}
.form-row {
  display: flex;
  justify-content: flex-end;
  padding: 0.5em;
}
.form-row.ignore-flex{
  display: inherit !important;
  justify-content: inherit !important;
}
.form-row label {
  padding: 1em;
  flex: 1;
  font-size: 1.2em;
  font-weight: bold;
}

#logout-session label{
  font-size: 1.2em;
  font-weight: bold;
  color: #3f51b5;
}


.form-row input {
  flex: 2;
}

.form-row input,
.form-row button {
  padding: 1em;
  margin: 10px 0;
  box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  font-size: 1.2em;
}
.form-row button {
  background-color: #3f51b5;
  color: white;
  border: 0;
  flex: 3;
  font-weight: 600;
  cursor: pointer;
}
.form-row button.disabled {
  background-color: gray;
  cursor: initial;
}
.align-right{
  text-align: right !important;
}
.hide-item{
  display: none !important;
}

div.row{
  clear: both;
  padding: 5px;
}

.row-header{
  width: 130px;
}

.row-header,
.row-detail{
  float: left;
}

.header-info{
  background-color: darkseagreen;
  text-align: center;
  color: white;
}
