
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  padding-left: 28px;
  padding-right: 28px;
  overflow: hidden;
}

.container {
  display: flex;
  /* height: 100vh; */
  align-items: center;
  justify-content: start;
  flex-direction: column;
  margin-top: 5rem;
}

.logo {
  width: 211px;
  padding-bottom: 20px;
}

.text {
  color: #434343;
  font-size: 14px;
  margin-top: 9px;
  margin-bottom: 24px;
  line-height: 150%;
  text-align: center;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
}

.doctor-card {
  display: flex;
  height: 98px;
  padding: 16px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  box-shadow:  0 16px 40px 0 rgba(126, 88, 254, 0.1)
}

.doctor-img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  margin-right: 16px;
  object-fit: cover;
}

.doctor-title {
  color: #173F7B;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}

.doctor-subtitle {
  color: #173F7B;
  font-size: 12px;
  font-weight: normal;
  font-family: 'Barlow', sans-serif;
}

.input-field {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  border: 1px solid rgba(126, 88, 254, 0.6);
  padding: 16px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
}

@media only screen and (min-width: 810px) {
  .input-field {
    width: 65%;
  }
  button  {
    width: 65% !important
  }

}

@media only screen and (min-width: 1240px) {
  .input-field {
    width: 27%;
  }
  button  {
    width: 27% !important
  }
  .text {
    width: 27% !important
    
  }
}

input::placeholder {
  color: #DADDE2;
  font-family: 'Barlow', sans-serif;
}

.error-message {
  color: #FF377F;
  font-size: 12px;
  font-weight: bold;
  text-align: start;
  width: 100%;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
}

.button {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  background-color: #7E58FE;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  border: none;
  cursor: pointer;
}

.button:disabled {
  background-color: #DADDE2;
  color: #FFFFFF;
  cursor: not-allowed;
}


.loader-container {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #7E58FE;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}