
/* Specific input CSS */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-bottom: 2px solid #0e432f !important;
  color: #0e432f !important;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border-bottom: 1px solid #0e432f !important;
  color:#0e432f !important;
}

.button_type_1, .button_type_1:active, .button_type_1:visited  {
	background-color: #0e432f;
}

.button_type_1:hover{
  background-color: #007a53;
}

.button_type_outline_1, .button_type_outline_1:active, .button_type_outline_1:visited  {
  background-color: transparent;
  border-color:#0e432f;
}

.button_type_outline_1:hover{
  background-color: transparent;
  border-color:#007a53;
}

.color_type_1{
	color:#0e432f !important
}


/*Background color for all page */
.background_color_container{
	background-color: #e9e9e9;
}


.upper
{
   display: flex;
  column-gap: 80px;
  justify-content: space-between; 
  height:100%;
  padding:5px; /* this */
}

.upper > div
{
  margin:5px;  /* and that, will result in a 10px gap */
}

