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

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "Inter", serif,sans-serif;
  color: white;
}
main {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  gap:40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(180deg, #1b1b3a 0%, #0a0a1f 100%);
}
form{
  width: 100%;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
}
form .search{
  max-width:654px;
  width: 50%;
  padding: .8rem 1rem;
  font-size: 18px;
  font-family: "Inter",serif;
  /* Base card styling */
  background: linear-gradient(
    145.9deg,
    rgba(28, 28, 63, 0.3) 0%,
    rgba(19, 19, 44, 0.4) 100%
  );
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  box-shadow:
  /* Outer glow */ 0 4px 24px -1px rgba(0, 0, 0, 0.2),
    /* Inner subtle highlight */ inset 0 1px 1px rgba(255, 255, 255, 0.08),
    /* Bottom inner shadow */ inset 0 -1px 1px rgba(0, 0, 0, 0.15);

  /* Subtle border */
  border: 2px solid rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 24px;

}
.search:focus{
  outline: none;
}
.card{
  /* min-height: 120px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width:60%;

  max-width:750px;
  /* Base card styling */
  background: linear-gradient(
    145.9deg,
    rgba(28, 28, 63, 0.3) 0%,
    rgba(19, 19, 44, 0.4) 100%
  );
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  border-radius: 24px;
  padding: 32px;
  
  /* position: relative;
isolation: isolate; */
  transition: all 0.3s ease;

  /* Layered box-shadows for depth */
  box-shadow:
  /* Outer glow */ 0 4px 24px -1px rgba(0, 0, 0, 0.2),
    /* Inner subtle highlight */ inset 0 1px 1px rgba(255, 255, 255, 0.08),
    /* Bottom inner shadow */ inset 0 -1px 1px rgba(0, 0, 0, 0.15);

  /* Subtle border */
  border: 2px solid rgba(255, 255, 255, 0.05);
}
.empty{
  text-align: center;
}

.top-container{
  display: flex;
  /* background-color: red; */
  gap:20px;
  justify-content: center;
  align-items: center;
}
.right-container{
  display: flex;
  flex-direction: column;
  gap:10px;
  /* background-color: rebeccapurple; */
}
.add-info{
  display: flex;
 gap:20px;
}
.bottom-container-repos{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:20px;
  margin: 40px;
  flex-wrap: wrap;
}
.repo{
  border: 2px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  padding: 6px 8px;
 
}
.repo a{
  color:white;
  text-decoration: none;
  cursor: pointer;
  &:hover{
    color:rgb(141, 139, 139);
  }
}
.person-image {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(114, 114, 255, 0.1);
}
img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.person-name {
  font-size: 24px;
  font-weight: 800;
}

.person-testimonial {
  font-size: 14px;
}
@media (max-width:900px) {
  .card,form .search{
    width: 90%;
  }
}
@media (max-width:600px) {
  .card,form .search{
    width: 100%;
  }
  .top-container{
    flex-direction: column;
    text-align: center;
  }
}