.container-contact{
    display: flex;
    justify-content: space-around;
    /*overflow: auto; */
    height: 60vh;
    padding: 5vw 5vw;
    /* background-color: rgb(0, 145, 255); */
}

.connect-withme {
    display: flex;
    flex: 1; /* Takes up equal space */
    flex-direction: column;
    margin: auto 5vw auto 5vw;
    width: 90vw;
    padding: 2vw;
    color: white;
    align-items: center;
    /* background-color: red; */
}

.content-withme {
    display: flex;
    flex: 1; /* Takes up equal space */
    flex-direction: column;
    width: 30vw;
    padding: 5vw;
    color: white;
    align-items: flex-start;
    /* background-color: blue; */
}
.connect-withme h2 {
    margin-bottom: 1vw; /* Adjust the value as needed for spacing */
}

.connect-withme p {
    margin-top: 1vw; /* Ensures there’s no extra space above the paragraph */
}

.social {
    display: flex;        /* Use Flexbox layout */
    gap: 3vw;            /* Add space between the items */
    padding: 0;          /* Remove default padding */
    margin: 0;           /* Remove default margin */
    /* list-style: none; */
    margin-top: 1vw;
    margin-left: 0vw;
    /* background-color: red; */
}

.social i {
    display: flex;
  }

.icon-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4vw;
  height: 4vw;
  /* aspect-ratio: 1; */
  font-size: 1.8rem;
  color: #141414;
  background-color: #FF6600;
  border-radius: 35%;
  transition: color 0.5s ease-in-out;
  text-decoration: none; /* remove the underline */
}

@property --fill {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}

.icon-link:hover {
  color: white ;
  --fill: 100%;
}

.icon-link::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(greenyellow var(--fill), transparent var(--fill));
  transition: --fill 0.6s ease-in-out;
}

.contact-formcontainer {
    display: flex;
    flex: 1; /* Takes up equal space */
    flex-direction: column;
    margin: auto 5vw auto 2vw;
    padding: 1vw;
    color: #141414;
    align-items: center;
    /* background-color: red; */
}

.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;    
    max-width: 100vw;
    max-height: 100vw;
    /* position: relative; */
    overflow: auto;
    padding: 1vw;
    padding-bottom: 1vw;
    background-color: #f9f9f9;
    border: 1px solid #321515;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* background-color: #141414; */
}

.form-control {
    max-width: 40vw;
    padding: .4vw;
    border: 1px solid #ccc;
    border-radius: .4vw;
    box-sizing: border-box;
    margin-bottom: 1vw; /* Space below each form control */
}

.submit-button {
    position: relative; /* Position the button absolutely within the container */
    bottom: -1vw; /* Distance from the bottom of the container */
    left: auto;
    background-color: #FF6600;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 8px; /* Adjust padding to make the button smaller */
    transition: background-color 0.3s ease;
    box-sizing: border-box; 
}

.submit-button:hover {
    background-color: whitesmoke;
    color: #FF6600;
    transition: .3s;
}

@media (max-width: 768px) {

.container-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    /*overflow: auto; */
    height: 100%;
    padding: 0vw 0vw;
    /* background-color: rgb(0, 145, 255); */
}

.connect-withme {
    display: flex;
    flex: 1; /* Takes up equal space */
    flex-direction: column;
    margin: auto 5vw auto 5vw;
    width: 90vw;
    padding: 0vw;
    height: auto;
    color: white;
    align-items: center;
    /* background-color: red; */
}

.content-withme {
    width: 80vw;
    margin-top: 2vh;
    align-items: center;
    /* background-color: orange; */
}

.connect-withme h2 {
    margin-bottom: 1vw; 
    font-size: 1.5rem;
    color: white;
    /* background-color: aquamarine; */
}

.social {
    display: flex;        
    gap: 3vw;  
    width: 80%;          
    padding: 0;          
    margin: 0;         
    margin-left: 0vw;
    justify-content: space-around;
    /* background-color: yellowgreen; */
}

.icon-link i {
    display: flex;
  }

.icon-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12vw;
  height: 12vw;
  font-size: 1.5rem;
  color: #141414;
  background-color: #FF6600;
  border-radius: 35%;
  transition: color 0.5s ease-in-out;
  text-decoration: none; 
}

.contact-formcontainer {
    display: flex;
    flex: 1; /* Takes up equal space */
    flex-direction: column;
    margin: 3vh 1vw auto 1vw;
    padding: 0vw;
    color: #141414;
    align-items: center;
    /* background-color: greenyellow; */
}

.contact-form {  
    max-width: 100vw;
    max-height: 120vw;
    padding-bottom: 0vw;
}

.form-control {
    max-width: 70vw;
    padding: .1vw;
}

.submit-button {
    bottom: -1.5vw; /* Distance from the bottom of the container */
    border-radius: 8px;
    font-size: 10px;
}

}