:root {
  /* Colors */
  --almost-white: #F5F7F8;
  --almost-black: #273445;
  --red: #FC4C44;
  --grey: #68778C;
  --bright-grey: #C9C9C9;
  --shadow-color: #EAEDEF;
  --boxes-background: #FFF;
  --blue-purple :#5651b6;
  --light-blue-purple: #837CD0;
  --orange: #ff925a;
  --pink: #f74668;

  /* Lengths */
  --menu-width: 250px;
  --menu-padding: 30px;
  --content-padding: 2.5vh;
  --default-button-height: 40px;
  --default-small-button-height: 30px;

  /* Borders */
  --default-border: solid 1px var(--shadow-color);
  --default-shadow: 0 2px 4px 0 rgba(234, 237, 239, 0.5);
}

html {
    height: 100%;
}
/*pour firefox*/
html {
  scrollbar-color: #5651b6 rgba(0,0,0,.3);
  scrollbar-width: 1em;
}

body {
	margin: 0px;
	overflow-x: hidden;
    height: 100%;
	background-color: var(--almost-white);
	font-family: Roboto;
    
}

.login_background{
   background-image: linear-gradient(334deg, rgb(191, 206, 221) 0%, rgb(111, 127, 143) 20%, rgb(46, 76, 109) 70%, rgb(15, 55, 94) 100%);
   width:62.5vw;
   height:100%;
   position:absolute;
}
.logo {
  position: absolute;
  top: 14vh;
  height: 48vh;
  transform: translate(-15%, 0px);
}
.logo_cognimove {
  position: absolute;
  right: 8vh;
  bottom: 20vh;
  height: 20vh;
}
.text_cognimove {
  position: absolute;
  height: 7vh;
  bottom: 15vh;
  right: 4vh;
}
.text_cognidis {
  position: absolute;
  height: 5vh;
  bottom: 5vh;
  transform: translate(15%)
}
.div_login, .password_form {
    flex-direction: column;
    justify-content: center;
    display: flex;
    background-color:white;
    width:37.5vw;
    height:100vh;
    position:absolute;
    top:0;
    right:0;
}
.cognimove_title {
  display:none;
}
.login_title {
  line-height: 1.5em;
  padding-left: 20%;
  padding-right: 20%;
  display: block;
  font-size: 2.5em;
  text-align: center;
  color: #496982;
  margin: 0 0 12.5vh 0;
}
.message {
  padding-left: 20%;
  padding-right: 20%;
  font-size: 1.2em;
  margin-bottom: 2vh;
}

.message-success {
    color: #155724;
}

.message-error {
    color: var(--pink);
}

.input_login{
  width:100%;
  height:50px;
  border : none;
  border-bottom: solid 1px #496982;
  padding:0.9em 0px 0.9em 0px;
  box-sizing:border-box;
  font-size: 1.2em;
  line-height: 23px;
  background-color:white;
  color:black;
}
.input_login:focus{
    outline: none;
}
.input_label{
  line-height: 30px;
  display: block;
  font-size: 1.2em;
  color: #6f8ba2;
}
input::placeholder {
  font-size: 1.2em;
  line-height: 23px;
  color: var(--bright-grey);
}

.input_div{
    padding-left:20%;
    padding-right:20%;
    margin-bottom: 5vh;
}
.div_apply{
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
}
.apply_button{
    --height: 50px;
    box-shadow: var(--default-shadow);
    height: var(--height);
    line-height: var(--height);
    border: none;
    border-radius: calc(var(--height) / 2);
    cursor: pointer;
    width: 50%;
    font-size: 1.2em;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #ffffff;
    /* background: linear-gradient(30deg, rgba(208,126,167,0.6012605725884104) 0%, rgba(133,51,120,0.5312325613839286) 40%, rgba(108,1,108,0.6572829815519958) 100%);*/ 
    /* background: linear-gradient(32deg, rgba(201,182,192,1) 0%, rgba(171,131,165,1) 40%, rgba(124,108,124,1) 100%) */
    background: linear-gradient(32deg, rgb(191, 206, 221) 0%, rgb(78, 111, 145) 60%, rgb(8, 61, 113) 100%);
    padding: 0px;
    display: initial;
}

@media only screen and (max-width: 1350px) {
  .login_background{ 
      display: none;
    }
    .div_login,
    .password_form {
      width:100vw;
    }
    .login_title {
      display: none;
    }
    .cognimove_title {
      display: block;
      width: 40%;
      height: auto;
      padding-left: 30%;
      padding-right: 30%;
      margin: 0 0 12.5vh 0;
      box-sizing: content-box;
    }
}

