
:root {
  --brand: orangered;
    
}

* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
 /* height: 100vh; */
  width: 100%;
}

/* Utility */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
}

.btn-orange {
  background: var(--brand);
  color: white;
}

.btn-white {
  background: white;
  color: var(--brand);
}

/* Landing */
.landing {
  background: linear-gradient(to bottom, #FFA726, #FB8C00);
  color: white;
  flex-direction: column;
  text-align: center;
}

.landing .logo { 
  padding-top:50% !important;
  font-size: 32px;
  font-weight: bold;
  
}
 
.landing .tagline {
  font-size: 15px;
   position: fixed; 
  text-align: center; 
  bottom: 25;
  left: 43%;
  place-items: center !important;     
   
}

/* Login */
.login-bg {
  background: url('background.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
   overflow: hidden;
    
  }

.signup-bg {
  background: url('background.jpg') no-repeat center center/cover;
  position: relative;
   height: 100vh;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
   
}

.container {
  position: relative;
  padding: 100px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  /* margin-top: 80px; */
}

.logo-title {
  margin-top:-10px;
  font-size: 28px;
  font-weight: bold;
}

.input-group {
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
  position: relative;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: none;
  border-radius: 25px;
  outline: none;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--brand);
}

.buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0;
}

.footer-links {
  font-size: 12px;
  text-align: center !important;
  margin-top: 10px;
}

.fingerprint {
  margin-top: 20px;
  font-size: 32px;
}

/* Register */
.register-card {
  background: white;
  border-radius: 40px 40px 0 0;
  padding: 30px 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 90%;
  overflow-y: auto;
   align-items: center !important;
}

.back-link {
  /* display: flex; */
  align-items: center !important;
  color: var(--brand);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: bolder;
  cursor: pointer;
}

.form-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--brand);
  border-radius: 25px;
  margin: 10px 0;
  padding: 5px 15px;
  width: 100%;
  max-width: 300px;
}

.form-icon {
  margin-right: 10px;
  color: var(--brand);
}

.form-group input,
.form-group select {
  border: none;
  flex: 1;
  padding: 10px;
  outline: none;
  width: 100%;
}

.terms {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

.terms b {
  color: var(--brand);
}

.pjax-link{
  text-decoration: none;

}

.primaryColor{
  color:var(--brand);
}

.d-none{
  display: none;
}
.phoneCode{
  width: 20px !important;
}