/* @font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo.ttf") format("truetype");
} */

/* @font-face {
  font-family: "RobotoCondensed";
  src: url("../fonts/RobotoCondensed.ttf") format("truetype");
} */
/* 
@import url('https://fonts.googleapis.com/css2?family=Cairo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap'); */



:root {
  --swd-primary: #f4301c;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.swd-bg-light{background-color: #edf2f3;}
.swd-bg-primary{background-color: var(--swd-primary);}
.swd-fw-700{font-weight: 700;}
.lead-1{font-size: 1.5rem;}
.swd-radius{border-radius: 0.475rem;}


.login-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right {
  background-color: #f4301c;
  /* Bootstrap danger red */
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.robot-placeholder {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.swd-forgot-pw {
  color: #f4301c;
  text-decoration: none;
}

.form-control,
.form-check-input {
  border-radius: 0 !important;
}

.btn-swd-danger,
.btn-primary {
  background: #f4301c!important;
  color: #fff!important;
  /* border-radius: 0; */
}
.btn-swd-danger:hover{
  background-color: #c60e07 !important;
  color: #fff;
}

.swd-login-text {
  max-width: 530px;
  min-width: 530px;
  text-align: center;
  margin: 0 auto;
}

.swd-login-left-col {
  max-width: 530px;
  min-width: 530px;
  margin: 0 auto;
}

.property_autocomplete {
  max-width: 530px;
  min-width: 530px;
}

.swd-login-right-text {
  max-width: 520px;
  border: 1px solid #d3d1d2;
  border-radius: 0.25rem;
  padding: 1rem;
  /*background-color: rgb(244 48 28 / 80%); */
  box-shadow: 0 0 20px 16px #00000021;
}

.login-right {
  position: relative;
}

.login-right .swd-overlay-img {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-size: 100%;
  opacity: 0.2;
  background-repeat: no-repeat;background-position: 50% 90%;background-size: cover;
}
.swd-login-logo{max-height: 10rem;}

.autocomplete {
  position: relative;
  max-width: 400px;
}

.suggestions {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  z-index: 10;
  display: none;
}

.suggestions div {
  padding: 10px;
  cursor: pointer;
}

.suggestions div:hover {
  background-color: #f2f2f2;
}

.swd-btn-disable{cursor: default;opacity: 0.5;}
.btn.btn-light-primary.swd-btn-disable:hover{
  color: #e4312a;
  border-color: #F8F5FF !important;
  background-color: #F8F5FF !important;
}



@media (min-width: 1200px) {
  .login-left {
    width: 45%;
  }

  .login-right {
    width: 55%;
  }
}

@media (max-width: 1366px) {
	.swd-login-text { min-width: 100%;}
	.swd-login-left-col {min-width: 100%;}
	.property_autocomplete {min-width: 100%;}
}