﻿/*navify Light*/
@font-face {
  font-family: "roche-sans-light";
  font-style: normal;
  src: url("fonts/RocheSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "roche-sans-regular";
  font-style: normal;
  src: url("fonts/RocheSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "roche-sans-medium";
  font-style: normal;
  src: url("fonts/RocheSans-Medium.woff2") format("woff2");
}
html, body {
  font-family: "roche-sans-regular";
  margin: 0;
  padding: 0;
  font-weight: normal;
  height: 100%;
  width: 100%;
}

h1 {
  font-size: 34px;
  font-weight: 200;
}

h2, h3, h4, h5, h6 {
  font-size: 26px;
  font-weight: 200;
}

h3 {
  font-size: 24px;
  font-weight: 200;
}

.GlobalContent .TitleHolder .PageTitle {
  color: #121212;
  font-size: 1.6em;
  margin-bottom: 15px;
  margin-top: 15px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Buttons */
.PrimaryButton {
  background-color: #0B41CD;
  border-radius: 4px;
  color: #FFFFFF;
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  border: none;
  cursor: pointer;
}

.PrimaryButton:hover {
  background-color: #1942A3;
}

.PrimaryButton:focus {
  background-color: #0B41CD;
  border: 2px solid #fff;
  outline: 2px solid #0B41CD;
}

.PrimaryButton:disabled {
  background-color: #F5F5F2;
  color: #969391;
}

/*Text Fields*/
.input-group {
  position: relative;
  margin: 20px 0;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #544F4F;
  padding: 0 5px;
  pointer-events: none;
  transition: 0.1s;
}

.input-group input {
  width: 100%;
  /*height: 60px;*/
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  padding: 12px 8px 12px 8px;
  background: transparent;
  border: 1.2px solid #544F4F;
  outline: none;
  border-radius: 5px;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label {
  top: 0;
  font-size: 14px;
  background: #f5f5f2;
}

.input-group:has(input:-webkit-autofill) label {
  /*color: red;*/
}

/* base */
body {
  display: flex;
  overflow-x: hidden;
}

body #LeftLoginContainer {
  background-color: #F5F5F2;
  width: 25%;
  height: 100%;
  min-width: 350px;
}

body #LeftLoginContainer #LoginContentContainer {
  padding-top: 10vh;
  margin: 0 10% 0 10%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

body #LeftLoginContainer #Identity {
  display: flex;
  flex-direction: row;
  /*background-color: green;*/
  width: 100%;
  height: 50px;
  /*    margin-top: 10vh;*/
  align-items: center;
  justify-content: center;
}

body #LeftLoginContainer #NavifyLogo {
  display: flex;
  width: 25%;
  /*background-color: red;*/
  align-items: center;
}

body #LeftLoginContainer #NavifyNQPTitle {
  display: flex;
  width: 75%;
  /*background-color: blue;*/
  align-items: center;
  font-size: 24px;
  font-weight: 200;
  height: 100%;
  padding-left: 8px;
  /*white-space: nowrap;*/
}

body #LeftLoginContainer #WelcomeInfo {
  margin-top: 15vh;
}

body #LeftLoginContainer .navifyAnimationLogo {
  width: 100%;
  height: 100%;
}

body #LeftLoginContainer .LoginContainer {
  /*margin-top: 5vh;*/
}

body #LeftLoginContainer #Login {
  margin-top: 5vh;
}

body #LeftLoginContainer #passwordError {
  margin-top: 1vh;
  color: #CC0033;
  font-size: 12px;
}

body #LeftLoginContainer #versionInfo {
  margin-top: 1vh;
  font-size: 12px;
}

body #LeftLoginContainer #LoginFooter {
  /*background-color: green;*/
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20%;
  /*margin-top:80%;*/
}

body #LeftLoginContainer #RocheLogo {
  width: 100%;
  bottom: 10px;
  /*position: absolute;*/
  /*background-color: red;*/
  text-align: center;
}

body #LeftLoginContainer #RocheLogo .RocheLogo {
  width: 60px;
}

body #RightLoginContainer {
  background-color: #fff;
  width: 75%;
  height: 100%;
  /*min-height: 768px !important;*/
}

body #RightLoginContainer #SloganContainer {
  margin: 25vh 0 0 100px;
}

body #RightLoginContainer .PathwaysSVG {
  max-width: 100%;
  max-height: 250px;
  height: 12vw;
  position: absolute;
  bottom: 25vh;
  width: 75%;
  display: block;
}
