﻿.nova-login-content-container {
  --web-login-content-background-color: #ffffff;
  --web-login-content-color: #000000;
  --web-login-title-color: #C00F2C;
  --web-login-title-font-size: 30px;
  --web-login-sub-title-color: #000000;
  --web-login-sub-title-font-size: 18px;
  --web-login-welcome-text-color: #000000;
  --web-login-welcome-text-font-size: 14px;
  --web-login-accent-background-color: #C00F2C;
  --web-login-accent-color: #ffffff;
  --web-login-hover-accent-background-color: #C00F2C;
  --web-login-hover-accent-color: #ffffff;
  --web-login-background-color: #EAEAEA;
  --web-login-background-image: "";
  --web-login-background-image-position: "center center";
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.nova-login-content-container .nova-login-content {
  width: 400px;
  background-color: var(--web-login-content-background-color);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border: 1px solid #B3B3B3;
  z-index: 10;
  flex-shrink: 0;
}
.nova-login-content-container .nova-login-content.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nova-login-content-container .nova-login-content.bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.nova-login-content-container .nova-login-content.bubble:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 45px 34px 0;
  border-color: var(--web-login-background-color) transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -44px;
  right: 33px;
}
.nova-login-content-container .nova-login-content.bubble:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 45px 34px 0;
  border-color: #b3b3b3 transparent;
  display: block;
  width: 0;
  z-index: 0;
  bottom: -45px;
  right: 33px;
}
.nova-login-content-container .nova-login-content .nova-login-title-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 5px 20px 5px;
}
.nova-login-content-container .nova-login-content .nova-login-title-wrapper .nova-login-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: normal;
  color: var(--web-login-title-color);
  font-size: var(--web-login-title-font-size);
  text-align: center;
}
.nova-login-content-container .nova-login-content .nova-login-title-wrapper .nova-login-sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  line-height: normal;
  color: var(--web-login-sub-title-color);
  font-size: var(--web-login-sub-title-font-size);
  text-align: center;
}
.nova-login-content-container .nova-login-content .nova-login-title-wrapper .nova-login-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 10px 0;
  width: 85%;
  line-height: normal;
  text-align: center;
  color: var(--web-login-welcome-text-color);
  font-size: var(--web-login-welcome-text-font-size);
}
.nova-login-content-container .nova-login-content .nova-login-title-wrapper .nova-session-end-text {
  color: #ff0000;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0 0;
  width: 85%;
  line-height: normal;
  text-align: center;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 0.5;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-input-container {
  width: 85%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0 10px 0;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-input-container .nova-login-input-label {
  color: var(--web-login-content-color);
  font-size: 16px;
  line-height: 24px;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-input-container .nova-login-input {
  height: 30px;
  border: none;
  margin: 0;
  background-color: #eaeaea;
  box-sizing: border-box;
  padding: 8px;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-size: 16px;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-button-container .nova-login-button {
  height: 35px;
  width: 85%;
  border: none;
  font-size: 16px;
  background-color: var(--web-login-accent-background-color);
  color: var(--web-login-accent-color);
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-button-container .nova-login-button:hover {
  background-color: var(--web-login-hover-accent-background-color);
  color: var(--web-login-hover-accent-color);
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-button-container .nova-login-button.nova-is-default-button {
  background-color: #808080;
  color: #ffffff;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-button-container .nova-login-button.nova-is-default-button:hover {
  background-color: #6e6e6e;
  color: #ffffff;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-validation-message-container {
  width: 85%;
}
.nova-login-content-container .nova-login-content .nova-login-form-wrapper .nova-login-form .nova-login-validation-message-container .nova-login-validation-messages {
  list-style-type: square;
  padding-left: 20px;
}
.nova-login-content-container .nova-login-content .nova-empty {
  flex-grow: 1;
}
.nova-login-content-container .nova-background-content {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--web-login-background-color);
  z-index: 1;
  background-image: var(--web-login-background-image);
  background-position: var(--web-login-background-image-position);
  background-repeat: no-repeat;
  background-size: cover;
}
.nova-login-content-container .nova-background-content .nova-content-logo {
  position: absolute;
}
.nova-login-content-container .nova-background-content .nova-content-logo.top-left {
  top: 30px;
  left: 15px;
}
.nova-login-content-container .nova-background-content .nova-content-logo.top-middle {
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.nova-login-content-container .nova-background-content .nova-content-logo.top-right {
  top: 30px;
  right: 15px;
}
.nova-login-content-container .nova-background-content .nova-content-logo.middle-left {
  top: 50%;
  left: 15px;
  transform: translate(0%, -50%);
}
.nova-login-content-container .nova-background-content .nova-content-logo.middle-middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nova-login-content-container .nova-background-content .nova-content-logo.middle-right {
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
}
.nova-login-content-container .nova-background-content .nova-content-logo.bottom-left {
  bottom: 30px;
  left: 15px;
}
.nova-login-content-container .nova-background-content .nova-content-logo.bottom-middle {
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.nova-login-content-container .nova-background-content .nova-content-logo.bottom-right {
  bottom: 30px;
  right: 15px;
}
@media screen and (max-width: 600px) {
  .nova-login-content-container {
    width: 100%;
  }
  .nova-login-content-container .nova-login-content {
    width: 100%;
  }
  .nova-login-content-container .nova-login-content.middle {
    position: inherit;
  }
  .nova-login-content-container .nova-login-content.bubble {
    position: inherit;
    border-radius: 0;
  }
  .nova-login-content-container .nova-login-content.bubble:after {
    content: none;
  }
  .nova-login-content-container .nova-login-content.bubble:before {
    content: none;
  }
  .nova-login-content-container .nova-background-content {
    display: none;
  }
}