﻿
/*
    Background 
*/
body {
    background: #eceff1;
    height: auto;
}

/*
    Sign up / Sign in container 
*/
.home-page-sign-in-container {
    margin: 50px auto;
    width: 1200px;
    border-radius: 5px;
    box-shadow: 0 0px 24px 0px rgb(0 0 0 / 20%);
    background: #FFF;
    height: 600px;
}

/*
    Home page banner container 
*/
.home-page-sign-in-banner-container {
    background: #3d8ac7;
    background: linear-gradient(to bottom, #5798cc 0%,#3d8ac7 100%);
    height: 100%;
    width: 600px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
    float: left;
}

/*
    Home page banner container LRS logo
*/
.home-page-sign-in-banner-container .lrs-logo {
    display: block;
    width: 600px;
    height: 100px;
    background-image: url(../images/logo-primary.svg);
    background-size: 480px 100px;
    background-repeat: no-repeat;
    /* margin: 20px auto; */
    background-position: center;
}

/*
    Home page banner text 
*/
.home-page-sign-in-banner-text {
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    margin: 60px 150px;
    border-bottom: 2px solid #ffffff50;
    padding-bottom: 25px;
    position: relative;
    font-size: 1.8rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.home-page-sign-in-banner-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    background: #3e88c4;
    height: 1px;
}

/*
    Home page cloud 
*/
.home-page-sign-in-cloud-full-container {
    position: absolute;
    left: 50px;
    top: 50px;
}

.home-page-sign-in-cloud-full {
    width: 222px;
    height: 70px;
    background: #ECEFF1;
    box-shadow: 10px 10px rgba(0,0,0,0.2);
    border-radius: 100px;
    opacity: 0.1;
    position: relative;
}

.home-page-sign-in-cloud-full::after,
.home-page-sign-in-cloud-full::before {
    content: "";
    position: relative;
    display: inline-block;
    background: inherit;
    border-radius: inherit;
}

.home-page-sign-in-cloud-full::after {
    width: 100px;
    height: 100px;
    top: -38px;
    left: -66px;
}

.home-page-sign-in-cloud-full::before {
    width: 100px;
    height: 100px;
    top: -60px;
    left: 98px;
}

/*
    Home page welcome content
*/
.home-page-sign-in-content-container {
    padding: 60px;
    margin-left: 600px;
}

.home-page-sign-in-welcome-title {
    font-weight: 400;
    margin-bottom: 20px;
}

.home-page-sign-in-option {
    margin: 30px 0;
}

.home-page-sign-in-option-choice {
    text-align: center;
    margin: 40px;
}

.home-page-sign-in-option-divider {
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1rem 0;
  display: flex;
}

.home-page-sign-in-option-divider span {
  flex: 0.2 0 auto;
  text-align: center;
}

.home-page-sign-in-option-divider::after,
.home-page-sign-in-option-divider::before {
  border-bottom: 1px solid #ECEFF1;
  height: 0.5rem;
  content: '';
  flex: 1 0 auto;
  margin-top: 0.1rem;
}

/*
    Home page sign in buttons
*/
.btn-sign-in-with-microsoft {
    background: url(../images/ms-symbollockup_mssymbol_19.svg) no-repeat 1.2rem;
    background-size: 1.5rem;
}

.btn-sign-in-with {
  display: block;
  padding-left: 2.75rem;
  display: block;
  width: 100%;
  padding: 1rem;
  padding-left: 3.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.btn-sign-in-with:not(.btn-primary) {
  border: 1px solid #cfd8dc;
}


.btn-sign-in-with:not(.btn-primary):hover {
  border: 1px solid #90a4ae;
  background-color: #f9f9f9;
}

.btn-sign-in-with-microsoft:focus {
  border-color: #5697cb;
}

.btn-sign-in-with .bi {
  font-size: 1.5rem;
  top: 0.65rem;
  color: #607d8b;
  position: absolute;
  left: 1.2rem;
}

.btn-sign-in-with.btn-primary .bi {
  color: #FFF;
}

.btn-sign-in-with.btn-sign-in-with-different-identity {
  margin-top: 1rem;
}

