/* Main Css Reset */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
}
body{
  font-family: 'Inter', Arial, sans-serif;
  height: 100vh;
  background: linear-gradient(to right, #269DA4, #07687A);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* End Css Reset */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

#authWrapper {
  width: 1024px;
  height: 450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
    grid-template-rows: 100%;
    grid-template-areas:  "form photo";
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 8px 48px 0px rgba(0, 0, 0, 0.15);
  }

#authForm {
  grid-area: form;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

#authForm #header { 
display: flex;
flex-direction: column;
align-items: center;
align-self: stretch;
}

#authForm #header.text {
display: flex;
padding: 8px 0px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
align-self: stretch;
}

#authForm .logo {
  display: flex;
  padding: 12px;
  margin-top: 140px;
  align-items: center;
  gap: 4px;
}

#authForm h2 {
color: #000;
text-align: center;
font-size: 28px;
font-weight: 900;
line-height: 150%;
}

#authForm p {
color: #575D75;
padding-top: 20px;
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%;
}

#authPhoto {
  grid-area: photo;
   background-color: #f00;
  background: url(./img/login-deco.jpg) no-repeat center center;
}



