/*-------- Colors --------*/
/*-------- Fonts --------*/
/*----------- Structure Elements Selectors Beginning -----------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body, html {
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: #FBFBFB;
}
body > div.row, html > div.row {
  height: 100%;
}

header {
  padding: 15px;
  display: flex;
  align-items: center;
}
header > div {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
header > div > a {
  border-radius: 7px;
  padding: 10px 15px;
  border: 1px solid #6992FF;
  color: #6992FF;
  background-color: #ffffff;
  text-decoration: none;
}

main {
  width: 100%;
  margin: 50px;
  margin-left: 278px;
}
main > div {
  text-align: center;
}
main > div h1 {
  color: #293963;
}
main section {
  margin: 10px 0;
}
main section > a.row {
  cursor: pointer;
}
main section > a.row span {
  font-size: 20px;
}
main section div {
  position: relative;
}
main section span {
  font-size: 18px;
  color: #7281A8;
  font-weight: 700;
}
main .onesection {
  border-radius: 7px;
  padding: 20px 20px 20px 50px;
  border: 1px solid #C3CCE3;
  background-color: #ffffff;
}
main .section-header {
  border-radius: 7px;
  padding: 20px 20px 20px 50px;
  border: 1px solid #C3CCE3;
  background-color: #ffffff;
  cursor: pointer;
}
main .section-header .arrow {
  right: 20px;
}
main .subsection {
  margin-left: 50px;
  padding-left: 20px;
  border-left: 5px solid #7281A8;
  max-height: 0;
  overflow: hidden;
}
main .subsection .onesection:not(:last-child) {
  margin-bottom: 10px;
}
main .subsection.section-content-active {
  padding-top: unset;
  padding-bottom: unset;
  padding-right: unset;
  margin-top: 10px;
}
main .arrow {
  position: absolute;
  right: 0;
}
main .section-content {
  overflow: hidden;
  max-height: 0;
}
main .section-content .row > div:first-child {
  width: 65%;
  padding-right: 20px;
}
main .section-content .row > div:first-child p {
  font-size: 14px;
}
main .section-content .row > div:first-child p:last-child {
  margin-top: 30px;
}
main .section-content .row > div:last-child {
  width: 35%;
  text-align: right;
}
main .section-content .row > div:last-child img {
  width: 100%;
  margin-bottom: 10px;
}
main .accordion {
  cursor: pointer;
}
main .section-content-active {
  padding: 50px 20px;
  max-height: unset;
}

/*----------- Structure Elements Selectors Ending -----------*/
/*----------- Structure Classes Selectors Beginning -----------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}

.pagetitle {
  margin-bottom: 50px;
}
.pagetitle > h1 {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.subtitle {
  font-weight: 700;
  color: #6992FF;
}

/*----------- Structure Classes Selectors Ending -----------*/
.btn-default {
  border-radius: 7px;
  padding: 10px 15px;
}

.btn-blue {
  background-color: #6992FF;
  color: #ffffff;
  border: 1px solid #6992FF;
  outline: none;
  text-decoration: none;
}

.btn-blue-reverse {
  background-color: #ffffff;
  color: #6992FF;
  border: 1px solid #6992FF;
  outline: none;
  text-decoration: none;
}

.login-container {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 15px;
  padding: 20px 50px;
  -webkit-box-shadow: 10px 16px 22px #D8E1FB;
  -moz-box-shadow: 10px 16px 22px #D8E1FB;
  box-shadow: 10px 16px 22px #D8E1FB;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  max-width: 500px;
}
.login-container h1 {
  color: #6992FF;
  text-transform: capitalize;
}
.login-container span {
  color: #766D6D;
}
.login-container .logo {
  width: 100%;
  text-align: center;
  margin: 30px 0;
}
.login-container .login-controls {
  margin: 40px 0;
  padding: 0 25px;
}
.login-container input[type=submit] {
  width: 100%;
  margin-top: 40px;
}
.login-container label {
  color: #BABABA;
}
.login-container .form-control {
  background: #FFFFFF;
  border: 1px solid #BBC6E4;
  -webkit-box-shadow: inset 3px 5px 4px #F2F5FD;
  -moz-box-shadow: inset 3px 5px 4px #F2F5FD;
  box-shadow: inset 3px 5px 4px #F2F5FD;
  border-radius: 10px;
  padding: 5px;
  height: 40px;
  width: 100%;
  margin-top: 10px;
  outline: none;
}
.login-container .row {
  margin: 15px 0;
}
.login-container .row > div:first-child {
  width: 50px;
  align-self: flex-end;
}
.login-container .row > div:first-child img {
  width: 25px;
}
.login-container .row > div:last-child {
  width: 100%;
}
.login-container .login-title {
  margin-bottom: 40px;
}
.login-container .checkbox {
  padding-left: 45px;
}
.login-container .checkbox span {
  font-size: 14px;
}
.login-container .checkbox span input {
  margin-right: 15px;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #BABABA;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #BABABA;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #BABABA;
}

/*# sourceMappingURL=login.css.map */
