body {
  font-family: 'Rubik', sans-serif;
  background-color: #ffffff;
  margin: 0 auto 0 auto;
  width:100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95vh;
}
h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color:rgba(38,38,46,1);
}
.section_title {
  text-align: center;
  margin-bottom: 10px;
}
p{
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color:rgba(38,38,46,1);
  text-decoration: none;
}
#loginwrapper{
  width: 25rem;
  padding: 1em;
  background-color: #FFF;
  border: rgba(38,38,46,0.2) 1px solid;
  border-radius:8px;
  margin: auto;
}

.g-recaptcha {
  margin-top:16px;
  display: inline-block;
}

.login_textbox {
  background:#fff;
  border: rgba(38,38,46,0.2) 1px solid;
  width:94.5%;
  color:rgba(38,38,46,1);
  margin-top:16px;
  font-size:16px;
  border-radius:4px;
  box-sizing: border-box;
  padding: 16px;
  transition: 0.3s;
}
.login_textbox:hover {
  border:rgba(38,38,46,0.4) 1px solid;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(38,38,46,0.4);
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(38,38,46,0.4);
}
:-ms-input-placeholder { /* IE 10+ */
  color: rgba(38,38,46,0.4);
}
:-moz-placeholder { /* Firefox 18- */
  color: rgba(38,38,46,0.4);
}
.login_textbox:focus {
  outline: none;
  border: rgba(73,74,246,1) 1px solid;
}
.login_button {
  background:rgba(73,74,246,1);
  border: none;
  width:94.5%;
  color:rgba(255,255,255,1);
  margin: 16px 0px 40px 0px;
  font-size:16px;
  border-radius:4px;
  padding: 16px;
  outline: none;
  transition: 0.3s;
}
.login_button:hover {
  outline: none;
  background:#4243CD;
}
.login_button:active {
  outline: none;
  background:rgba(73,74,246,0.7);
}
.logo{
  margin: 40px 0px 10px 0px;
  width: 144px;
}

.error_sign_in{
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  color: red;
  font-size: 14px;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.label_notification {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color:rgba(38,38,46,1);

}

.sub_menu_wrapper {
  /*width: 25rem;*/
  padding: 1em;
  background-color: #FFF;
  border: rgba(38,38,46,0.2) 1px solid;
  border-radius:8px;
  margin: auto;
}
.tool_item_wrapper {
  font-size: 16px;
  /*width: 25rem;*/
  padding: 1em;
  background-color: #FFF;
  margin: auto;
  text-align: left;
}

.sub_menu_title {
  font-size: 24px;
  font-weight: 1000;
}
.top_header_wrapper {
  overflow: hidden;
  position: fixed;
  top: 0;
  border-bottom: solid 2px #f8f8f8;
  width: 100%;
  background-color: #fff;
}
.description {
  margin-left: 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
}