@font-face {
    font-family: 'VAGRounded-Light';
    src: url('./VAGRounded-Light-Regular.ttf')  format('truetype')
}

@font-face {
    font-family: 'VAGRoundedBT';
    src: url('./VAGRoundedBT.ttf')  format('truetype')
}

body{
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 0;
    background-color: #DA1884;
}

.mainContainer {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.textarea {
  border: none;
  resize: none;
}

.titleContainer {
  display: flex;
  flex-direction: column;
  font-size: 64px;
  font-weight: bolder;
  align-items: center;
  justify-content: center;
}

.resultContainer, .historyItem {
  flex-direction: row;
  display: flex;
  width: 400px;
  align-items: center;
  justify-content: space-between;
}

.historyContainer {
  flex-direction: column;
  display: flex;
  height: 200px;
  align-items: center;
  flex-grow: 5;
  justify-content: flex-start;
}

.buttonContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
}

.inputContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.inputContainer > .errorLabel {
  color: red;
  font-size: 12px;
}

.inputBox {
  height: 48px;
  width: 400px;
  font-size: large;
  border-radius: 8px;
  border: 1px solid grey;
  padding-left: 8px;
}






.wrapper {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-auto-rows: minmax(75px, auto);
}

.header {
  grid-column: 1 / 10;
  grid-row: 1;
  background-color: #DA1884;
  color: #FFFFFF;
  font-family: VAGRoundedBT;
}

.email {
  grid-column: 4 / 9;
  grid-row: 2 / 6;
  background-color: white;
}

.email_btn {
  grid-column: 9;
  grid-row: 2 / 4;
  background-color: #FBE446;
  position: relative;
}

.email_label {
  grid-column: 9;
  grid-row: 4 / 6;
  background-color: #FBE446;
  position: relative;
  padding-left: 50px;
  font-family: VAGRounded-Light;
}

.btn_container{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.level_checkbox_1 {
  grid-column: 1;
  grid-row: 3;
  background-color: #FBE446;
  text-align: center;
  padding: 10px;
}

.stage_checkbox {
  grid-column: 2 / 4;
  grid-row: 3;
  background-color: #FBE446;
  text-align: center;
  padding: 10px;
}


.level_checkbox_2 {
  grid-column: 1 / 4;
  grid-row: 4 / 9;
  background-color: #FBE446;
  text-align: left;
  padding: 10px;
}

.notification_type_config {
  grid-column: 2 / 4;
  grid-row: 2;
  background-color: #FBE446;
  text-align: center;
  font-family: VAGRounded-Light;
}

.incident_type_config {
  grid-column: 1;
  grid-row: 2;
  background-color: #FBE446;
  text-align: center;
  font-family: VAGRounded-Light;
}

.level_type_config {
  grid-column: 3;
  grid-row: 2;
  background-color: #FBE446;
  text-align: center;
  font-family: VAGRounded-Light;
}

.sms {
  grid-column: 4 / 9;
  grid-row: 6 / 8;
  background-color: white;
  padding: 10px;
  border-top: 5px solid #DA1884;
}
.sms_cost {
  grid-column: 4 / 9;
  grid-row: 8;
  background-color: rgb(245, 241, 241);
  padding: 10px;
  border-top: 2px solid #272626;
  font-family: VAGRounded-Light;
}
.sms_btn {
  grid-column: 9;
  grid-row: 6 / 8;
  background-color: #FBE446;
  position: relative;
  border-top: 5px solid #DA1884;
}

.sms_label {
  grid-column: 9;
  grid-row: 8 / 9;
  background-color: #FBE446;
  position: relative;
  padding-left: 50px;
  font-family: VAGRounded-Light;
}

.stats {
  grid-column: 1 / 10;
  grid-row: 9 / 10;
  background-color: #DA1884;
  color: #FFFFFF;
  font-family: VAGRounded-Light;
  padding: 10px;
}
.summary {
  grid-column: 1 / 10;
  grid-row: 11 / 13;
  background-color: #DA1884;
  color: #FFFFFF;
  font-family: VAGRounded-Light;
  padding: 10px;
}

.left_login {
  grid-column: 1 / 3;
  grid-row: 2 / 9;
  background-color: #FBE446;
}

.left_login_hidden {
  grid-column: 1 / 3;
  grid-row: 2 / 9;
  background-color: #FBE446;
  visibility: hidden;
}

.center_login {
  grid-column: 4 / 8;
  grid-row: 2 / 6;
  background-color: #FFFFFF;
}

.center_home {
  grid-column: 4 / 7;
  grid-row: 2 / 6;
  background-color: #FFFFFF;
}

.center_home_button {
  grid-column: 6;
  grid-row: 7;
  background-color: #FFFFFF;
}

.right_login {
  grid-column: 8 / 10;
  grid-row: 2 / 13;
  background-color: #FBE446;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
}

.left, .right {
  width: 25%;
}

.left {
  display: block;
  text-align: center;
}

.right {
  text-align: center;
}

.middle {
  width: 50%;
  text-align: center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

img {
  width: 27%; /* or any custom size */
  height: 28%;
  margin-top: 5px;
}

label, p {
  font-family: VAGRounded-Light;
}

p {
  font-family: VAGRounded-Light;
}

.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #DA1884;
  font-family: VAGRounded-Light;
}

.data_button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  background-color: #DA1884;
  font-family: VAGRounded-Light;
  width: 250px;
}

.button_filter {
  border: none;
  color: white;
  padding: 1px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 2px 2px;
  cursor: pointer;
  background-color: #DA1884;
  font-family: VAGRounded-Light;
}

select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  width: 100%;
  padding: 0.5em 5em 0.5em 0.5em;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
  font-family: VAGRounded-Light;
}

.btn {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  color: white;
  background-color: #DA1884;
  font-family: VAGRounded-Light;
}

.input_filter{
  width: 100px;
}
.checkbox_filter{
  width: 150px;
}
.select_filter{
  width: 250px;
  font-size: 15px;
  font-family: VAGRounded-Light;
}

textarea {
  margin:0;
  padding:0;
  border:none;
  display:block;
  width: 100%;
  height: 100%;
}

.level_type_config {
  grid-column: 3;
  grid-row: 2;
  background-color: #FBE446;
  text-align: center;
  font-family: VAGRounded-Light;
}

 /* Login */

.login, .register{
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border-radius: .5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loginbtn, .registerbtn{
    text-align:center;
}

.logged_in a, .registered a{
    color: darkred;
}

.logged_in a:hover, .registered a:hover{
    text-decoration: none;
}


.logged_in , .registered {
    margin: 0 50px;
}
.loginbtn input:hover, .registerbtn input:hover, .btn:hover{
    color: #fff;
}

.login .textinput, .register .textinput{
    margin-left: unset;
}

.login form input{
    width: 100%;
}

.login form p #remember_me{
    width: revert;
}

form {
    border-radius: .5rem;
    margin-bottom: 10px;
    margin-left: 50px;
    margin-right: 50px;
}
.asteriskField {
    display: none;
}

@media (min-width:699px) and (max-width: 827px) {
    .login, .register{
        width: 70%;
    }
}

@media (min-width:421px) and (max-width: 698px) {
    .login, .register{
        width: 95%;
    }
}
@media (max-width: 551px)  {
    .login, .register{
        top: 55%;
    }
}
@media (max-width: 420px) {
    .login, .register{
        width: 100%;
    }
}

.Register-Header, .Login-Header{
    text-align:center;
}

.mb-5 {
    margin-bottom: 1rem!important;
}