﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 458px) {
  .main_container .cardbox {
    width: 25rem;
  }
  .main_container .cardbox-body {
    padding: 1.2rem;
  }
  .main_container .cardbox-profile {
    width: 60vw;
  }
  .main_container .cardbox-profile-body {
    padding: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .main_container .cardbox.consent {
    width: 80vw;
  }
  .main_container .cardbox-profile {
    width: 80vw;
    margin-top: 3rem;
  }
  .main_container .cardbox-profile-body {
    padding: 1.2rem;
  }
  .main_container .nav-container {
    border-right: 3px ridge #524da1;
    border-bottom: none;
  }
  .main_container .data-container {
    margin-top: 0rem;
  }
}
@media screen and (min-width: 992px) {
  .main_container .cardbox-profile {
    width: 60vw;
  }
  .main_container .cardbox-profile-body {
    padding: 1.2rem;
  }
}
body {
  background: #fff;
  color: #000;
  height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
}

main {
  height: 100%;
  width: 100%;
}

.main_container {
  display: flex;
  height: 100vh;
}

.check-label {
  margin-top: 0.2rem;
}

.cardbox {
  background-color: white;
  width: 90vw;
  min-width: 21rem;
  border-radius: 1px;
  margin: auto;
}
.cardbox-header {
  background-color: #6e6ab8;
  color: #fff;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.cardbox-body {
  padding: 0.8rem;
}
.cardbox .form-inline {
  display: flex;
}
.cardbox .form-inline .align-left {
  display: inline-block;
  text-align: left;
  width: 60%;
}
.cardbox .form-inline .align-right {
  display: inline-block;
  text-align: right;
  width: 100%;
}

.cardbox-profile {
  background-color: white;
  width: 90vw;
  min-width: 21rem;
  border-radius: 1px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.cardbox-profile-header {
  background-color: white;
  color: #524da1;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.cardbox-profile-body {
  padding: 0.8rem;
}

.btn-block {
  width: 100%;
  display: block;
  background-color: #524da1;
  border-color: #403d7f;
  color: #fff;
  border-radius: 1px;
}
.btn-block:hover {
  background-color: #403d7f;
  border-color: #2f2c5c;
  color: #fff;
}
.btn-block[disabled] {
  background-color: dimgray;
  border-color: darkgrey;
  color: whitesmoke;
  pointer-events: none;
}

.btn-outline-block {
  width: 100%;
  display: block;
  background-color: transparent;
  border-color: #524da1;
  color: #fff;
  border-radius: 1px;
}
.btn-outline-block:hover {
  background-color: transparent;
  border-color: #403d7f;
  color: #fff;
}
.btn-outline-block[disabled] {
  background-color: transparent;
  border-color: darkgrey;
  color: whitesmoke;
  pointer-events: none;
}

.btn-check + .btn-outline-block:hover {
  background-color: transparent !important;
  border-color: #403d7f !important;
  color: #524da1 !important;
}

.btn-check[disabled] + .btn-outline-block {
  background-color: transparent !important;
  border-color: darkgrey !important;
  color: whitesmoke !important;
  pointer-events: none;
}

.btn-check:checked + .btn-outline-block {
  background-color: #524da1 !important;
  border-color: #2f2c5c !important;
  color: #000 !important;
}

.btn-check:checked[disabled] + .btn-outline-block {
  background-color: dimgray !important;
  border-color: darkgrey !important;
  color: whitesmoke !important;
  pointer-events: none;
}

.btn-normal {
  background-color: #524da1;
  border-color: #403d7f;
  color: #fff;
  border-radius: 1px;
}
.btn-normal:hover {
  background-color: #403d7f;
  border-color: #2f2c5c;
  color: #fff;
}

.btn-navpill {
  margin: 0.5rem;
  margin-left: 0.5rem;
}
.btn-navpill.active {
  background-color: #524da1;
  border-color: #403d7f;
  color: #fff !important;
  border-radius: 1px;
  padding: 0.5rem;
}
.btn-navpill.active:hover {
  background-color: #403d7f;
  border-color: #2f2c5c;
  color: #fff;
  padding: 0.5rem;
}

.nav-container {
  border-right: none;
  border-bottom: 3px ridge #524da1;
}

.data-container {
  margin-top: 1rem;
}

label.italic {
  font-style: italic;
}
label:hover {
  color: #000;
}
label > a {
  font-style: normal;
}

input[type] {
  border-color: #d9d9d9;
  background-color: white;
  color: #000;
  border-radius: 1px;
}
input[type]:disabled {
  background-color: white;
  color: #000;
}
input[type]:focus {
  background-color: white;
  color: #000;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000;
  box-shadow: white;
}

.form-control::-webkit-input-placeholder {
  color: black;
  opacity: 0.4;
}

.label-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid white;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 1px;
}

.form-check-input:checked {
  background-color: #524da1;
  border-color: #2f2c5c;
}

.social-icons button {
  background-color: transparent;
  border-color: transparent;
  padding: 0.4rem;
  color: #524da1;
  transition: all 0.3s ease-in-out;
}
.social-icons button:hover {
  color: #403d7f;
}
.social-icons button[disabled] {
  color: dimgray;
  pointer-events: none;
}

.recovery-code {
  color: #9ca14d;
}

.kbd {
  color: #9ca14d;
  background-color: transparent;
}

div[role=alert] p a:link, div[role=alert] p a:visited, div[role=alert] p a:active {
  color: #524da1;
  text-decoration: none;
}
div[role=alert] p a:hover {
  color: #403d7f;
}

.link_primary a:link, .link_primary a:visited, .link_primary a:active {
  color: #000;
  text-decoration: none;
}
.link_primary a:hover {
  color: #524da1;
}

.link_secondary a:link, .link_secondary a:visited, .link_secondary a:active {
  color: #524da1;
  text-decoration: none;
}
.link_secondary a:hover {
  color: #403d7f;
}

.text-justifyed {
  text-align: justify;
  text-justify: inter-word;
}

.email-check {
  border-color: #d9d9d9;
  background-color: white;
}

.field-validation-error,
.validation-summary-errors {
  color: #ff5959 !important;
}

.secondary-title {
  color: #65628c;
}
