/* LOGIN FORM */
.login {
  max-width: 400px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  padding-top: 20px;
}
.login h1 {
  text-align: center;
  color: #5b6574;
  font-size: 2vw;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
}
.login form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 15px;
}
.login form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #6197c8;
  color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  width: 79%;
  height: 50px;
  border: 1px solid #dee0e4;
  margin-bottom: 20px;
  padding: 0 15px;
}
.login form input[type="submit"] {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #6197c8;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
  background-color: #2868c7;
  transition: background-color 0.2s;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #6197c8;
  background-color: #b6d0e6;
  border-radius: 5px 5px 0 0;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #6197c8;
  color: white;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #95ccdc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 20px 12px;
  border: 1px solid #95ccdc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

/* ACCORDION */
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  color: white;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: 1px solid #6197c8;
  background-color: #b6d0e6;
  text-align: left;
  outline: none;
  font-size: 2vw;
  transition: 0.4s;
  border-radius: 5px;
  margin:5px;
}

.acctive, .accordion:hover {
  background-color: #95ccdc; 
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  transition: 0.4s;
  /*max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;*/
  background-color: white;
  border: 1px solid #95ccdc;
  border-radius: 5px;
}

.accordion:after {
  content: '\02C5'; /* Unicode character for "plus" sign (+)  02795*/
  font-size: 2vw;
  color: #777;
  float: right;
  margin-left: 5px;
}

.acctive:after {
  content: "\02C4"; /* Unicode character for "minus" sign (-) 2796*/
}

.accform {
  padding: 1vw;
  width: 100%;
}

.accform input {
  margin-bottom: 10px;
  font-size: 2vw;
  border-radius: 5px;
  border-color: #6197c8;
}

.accform input[type='submit'] {
  text-align: center;
  display: inline-block;
  
}