.back-home-btn a{
  display: inline-flex;
  gap: 5px;
  color: #034ea1;
  text-decoration: none;
}
.common-bg {
    background-image: url(../../images/left-bg.webp), url(../../images/right-bg.webp);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    background-attachment: fixed;
}
.doctor-tab-container{
  display: flex;
  gap: 50px;
  margin-top: 100px;
}
.tabs {
  background: #fff;
  border: 1px solid #CCCCCC;
  width: 250px;
}

.tab {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 15px;
  border: none;
  box-shadow: none;
  padding: 15px;
  font-size: 16px;
  background: none;
  cursor: pointer;
  text-decoration: none;
  color: #324054;
  transition: all 0.3s ease-in-out;
}
.tab span svg{
  display: block;
}
/* Active tab */
.tab.active {
  color: #fff;
  background: #034EA1;
}
.tab.active svg path{
  fill: #fff;
}
/* Content */
.tab-content {
  display: none;
  animation: fadeUp 0.4s ease;
}

.tab-content.active {
  display: block;
}
.tab:hover{
  color: #fff;
  background: #034EA1;
}
.tab:hover svg path{
  fill: #fff;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-contents{
  flex: 1;
}
.doctor-profile-form-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.tab-content h2{
  background: linear-gradient(to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 45px;
  font-weight: 300;
  text-align: center;
}
.form-group{
  display: block;
}
.form-group label{
  display: block;
  font-size: 20px;
  color: #034EA1;
  margin-bottom: 10px;
}
.form-group input, .form-group select{
  display: block;
  width: 100%;
  padding: 8px 15px;
  color: #000;
  border-radius: 12px;
  border:2px solid #034da117;
  min-height: 60px;
}
.save-btn {
  margin-top: 30px;
}
.save-btn button{
  min-width: 250px;
  padding: 15px 50px;
  border: 1px solid #034EA1;
  color: #034EA1;
  box-shadow: none;
  background: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
}
.pin-code-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
#fetchPincodeBtn{
  background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
  color: #fff;
  border: none;
  border-radius: 12px ;
  padding: 10px 45px;
  cursor: pointer;
  width: 40%;
  min-height: 60px;
}
#doctor_profile_form .text-danger {
  color: #d32f2f;         
  font-size: 14px;       
  margin-top: 6px;        
  display: block;         
  line-height: 1.4;
}
.getdetails{
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  align-items: end;
}
.getdetails .form-group{
  flex: 1;
}
@media(max-width:767px){
  .doctor-profile-form-grid{
    grid-template-columns: 1fr;
  }
  .doctor-tab-container{
    margin-top: 30px;
  }
}