﻿:root {
  --clr-dark-blue: #1b2538;
  --clr-teal: #00a8ab;
  --clr-blue: #1482c4;
  --clr-light-blue: #7ab0de;
  --clr-gray: #e8ede7;
  --clr-white-gray: #eff3f7;
  --clr-white: #f8f9f9;
  --success-color: #5cb85c;
  --warning-color: #f0ad4e;
  --warning-link: #916900;
  --font-primary: "Open Sans", sans-serif;
}

.ie-panel {
  display: none;
  background: #212121;
  padding: 10px 0;
  box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.3);
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
}

html.ie-10 .ie-panel,
html.lt-ie-10 .ie-panel {
  display: block;
}

.text-success {
  color: var(--success-color);
}
.text-warning {
  color: var(--warning-color);
}
.text-danger {
  color: var(--danger-color);
}
.text-primary {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--secondary-color);
}

.login-section {
  font-family: var(--font-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  min-height: 100vh;

  h1,h2,h3,h4,h5,h6,
  .h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: var(--font-primary);
  }

  a:not(.alert a) {
    color: var(--clr-blue);
  }
  a:not(.alert a):hover {
    color: var(--clr-teal);
  }
  input, select {
    height: auto;
    padding: .75rem 1rem;
  }
  button,
  .btn.btn-primary {
    color: var(--clr-white);
    background: linear-gradient(90deg, var(--clr-blue), var(--clr-teal));
    border-radius: 0.25rem;
    padding: 1rem;
    transition: all 0.3s;
    &:hover {
      color: var(--clr-white);
      box-shadow: 0 0 0 0.25rem var(--clr-teal);
    }
  }
  .alert-warning a {
    color: var(--warning-link);
  }
  .alert-warning a:hover {
    color: var(--clr-teal);
  }
  .form-label {
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
    &.focus {
      color: inherit;
    }
  }
  .text-over-img {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 150%;
    color: var(--clr-white);
  }

    .btn-show-hide-pwd {
        all: initial;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        cursor: pointer;
        color: #676767;

        &:hover {
            border: none;
            background: none;
            box-shadow: none;
            color: var(--clr-teal);
        }
    }
}

.field-validation-error {
    color: var(--red);
    font-weight: 700;
}