.contact-logo{
  height: 200px;
  width: 200px;
  overflow: hidden;
  margin-top: 100px;
}
input{
  outline-style: none;
}
.contact-header{
  border-bottom: solid 1px rgb(206, 206, 206);
}
.home-logo{
  height: 60px;
  cursor: pointer;
}
.contact-photo-container{
  position: relative;
  top: -50px;
  height: 100px;
  width: 100px;
  border-radius: 700px;
  background-color: rgb(29, 147, 220);
  display: flex;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
}
.contact-container{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-container{
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 200px;
  width: 1000px;
}
.info-container{
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 50px;
  margin-top: 30px;
}
.info{
  width: 50%;
  display: flex;
  flex-direction: column;
}
.input-info{
  width: 100%;
  border: solid 1px rgb(197, 197, 197);
  border-radius: 5px;
  height: 50px;
  font-size: 15px;
  padding: 0;
  padding-left: 10px;
  color: rgb(62, 62, 62);
  outline-style: none;
  
}
label {
  font-size: 22px;
  color: rgb(70, 70, 70);
  margin-bottom: 10px;
}
.message{
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
textarea {
  padding-left: 10px;
  width: 100%;
  resize: none;
  border: none;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
  font-size: 17px;
  color: rgb(62, 62, 62);
  border: solid 1px rgb(197, 197, 197);
}

.button-contact{
  background: linear-gradient(to right, #00c471, #00a864);
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 196, 113, 0.2);
}
.button-contact:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 196, 113, 0.3);
}