/*
ROTARY Color Codes

Royal Blue
Hex #0c3c7c R23 G69 B143

Azure
Hex #0050a2 R0 G93 B170

Sky Blue
Hex #019fcb R1 G180 B231

Gold
Hex #f7a81b R247 G168 B27

Cranberry (Rotaract)
Hex #d91b5c R217 G27 B92

*/

:root {
  --input-padding-x: 1.5rem;
  --input-padding-y: 0.75rem;
}

.login,
.image {
  min-height: 100vh;
}

/* Wird je nach Einstellung in settings.inc.php in der index.php überschrieben! */
.bg-image {
  /* background-image: url('https://source.unsplash.com/WEQbe2jBg40/600x1200'); */
  /*background-image: url('https://source.unsplash.com/nNMBa7Y1Ymk/600x1200'); */
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  /* Farbiger Overlay */
  box-shadow: inset 0 0 0 100vw rgba(247,168,27,0.4); 
}
@media (max-width: 768px) {
  .bg-image-right {
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: top;
    box-shadow: inset 0 0 0 100vw rgba(255,255,255,0.9); 
  }
}




.meeting-status {
  margin-top: 1rem;
  background-color: white;
  padding: 0.5rem;
  height: min-content;
}

.meeting-status > span.green {
  color: green;
}
.meeting-status > span.orange {
  color: orange;
}


.logo {
  width: 60%;
}

.login-heading {
  font-weight: 300;
}

@media (max-width: 768px) {
  .tab-content {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
  
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
  
    background-color: #ffffff;
  }
}

.btn-login {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  background-color: #0c3c7c;
  border-color: #0c3c7c;
}

.btn-forward {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group>input,
.form-label-group>label {
  padding: var(--input-padding-y) var(--input-padding-x);
  height: auto;
  border-radius: 2rem;
}

.form-label-group>label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  cursor: text;
  /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}


/* Social Media Icons
-------------------------------------------------- */

.social-icons {
  position: absolute;
  margin-bottom: 2rem;
  width: 100%;
  z-index: 2;
}

.social-icons ul {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}

.social-icons ul > li {
  margin-left: 1rem;
  margin-right: 1rem;
  display: inline-block;
}

.social-icons ul > li > a {
  display: block;
  color: white;
  background-color: #0c3c7c;
  border-radius: 100%;
  font-size: 2rem;
  line-height: 4rem;
  height: 4rem;
  width: 4rem;
}

@media (min-width: 768px) {
  .social-icons {
    margin: 0;
    position: absolute;
    left: 2.5rem;
    bottom: 2rem;
    width: auto;
  }
  .social-icons ul {
    margin-top: 0;
    width: auto;
  }
  .social-icons ul > li {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .social-icons ul > li:last-child {
    margin-bottom: 0;
  }
  .social-icons ul > li > a {
    transition: all 0.2s ease-in-out;
    font-size: 2rem;
    line-height: 4rem;
    height: 4rem;
    width: 4rem;
  }
  .social-icons ul > li > a:hover {
    background-color: #002E66;
  }
}

/* Fallback for Edge
-------------------------------------------------- */

@supports (-ms-ime-align: auto) {
  .form-label-group>label {
    display: none;
  }
  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

/* Fallback for IE
-------------------------------------------------- */

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .form-label-group>label {
    display: none;
  }
  .form-label-group input:-ms-input-placeholder {
    color: #777;
  }
}
