﻿#form_create {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
#form_create > h1 {
  margin-bottom: 20px;
  color: #757575;
  font-family: "Poppins";
}
#form_create > div {
  flex: 0 0 500px;
  width: 800px;
  display: flex;
  border: 1px solid #d4d4d4;
  box-shadow: 0 0 8px #c8c8c8;
  border-radius: 3px;
  overflow: hidden;
  background-color: #f9f9f9;
}
#form_create #form_create_types {
  flex: 0 0 30%;
  background-color: #19313e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
#form_create #form_create_types .form-type {
  border: 1px solid #37505e;
  padding: 10px;
  background-color: #26495b;
  font-size: 0.7em;
  margin-bottom: 10px;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
}
#form_create #form_create_types .form-type:hover {
  box-shadow: 0 0 6px #2668bd;
  border-color: #4b7c94;
}
#form_create #form_create_types .form-type.active {
  box-shadow: 0 0 6px #2668bd;
  /*box-shadow: 0 0 15px #000;*/
  border-color: #68b2d7;
}
#form_create #form_create_types .form-type h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
#form_create .form-overview {
  overflow: hidden;
  flex-direction: column;
  display: none;
  margin: 5px;
  width: 100%;
}
#form_create .form-overview.active {
  display: flex;
}
#form_create .form-overview .form-overview-content {
  overflow: auto;
  scrollbar-width: thin;
  padding: 20px;
  flex: 1;
}
#form_create .form-overview .form-overview-content h2 {
  margin-bottom: 10px;
  color: #3e3e3e;
}
#form_create .form-overview .form-overview-actions {
  flex: 0 0 75px;
  display: flex;
  justify-content: center;
  padding: 20px;
}
#form_create .form-overview .form-overview-actions > a {
  border: 1px solid #26495b;
  padding: 10px 20px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  transition: transform ease-in 0.1s;
  color: #19313e;
  text-decoration: none;
}
#form_create .form-overview .form-overview-actions > a:hover {
  border-color: #68b2d7;
  color: #26495b;
  transform: scale(1.03);
}
