.contactme{
    background-color: #0F100F;
    color: #976FCE;
    padding: 100px 0;
    text-align: center;
    display: flex;
    height: 80vh;
    box-sizing: border-box;
    font-family: "Krub", sans-serif;
}

.contact-icon{
    width: 50vw;
    height: auto;
    /* padding: 50px 0; */
}

.contact-icon img{
    width: 50%;
    height: auto;
    
}

.contact-section {
  width: 50vw;
  /* padding: 50px 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
  }

  .input-group {
    margin-bottom: 20px;
    border: 3px solid #976FCE;
    /* border-radius: none; */
    background-color: black;
  }

  .input-group label {
    display: block;
    margin-bottom: 5px;
  }

  .input-group input {
    padding: 10px;
    width: 300px;
    border: none;
    /* border-radius: 5px; */
    background-color: black;
    font-family: "Krub", sans-serif;
    color: rgba(255, 255, 255, 0.574);
  }

  .contact-button {
    padding: 10px 20px;
    background-color: #0F100F;
    color: #976FCE;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
  }


#message{
  /* padding-bottom: 60px; */
  height: 120px;
  background-color: transparent;
}

  .contact-button:hover {
    background-color: #976FCE;
    color: #0F100F;
  }


input[type="text"]:focus {
    outline: none; /* Removes the default outline */
    border: none; /* Removes the border */
    cursor: pointer;
}

input[type="phone"]:focus {
  outline: none; /* Removes the default outline */
  border: none; /* Removes the border */
  cursor: pointer;
}

textarea[type="text"]:focus {
  outline: none; /* Removes the default outline */
  border: none; /* Removes the border */
  cursor: pointer;
}

#message{
  color: rgba(255, 255, 255, 0.574);
  padding: 20px;
  font-family: "Krub", sans-serif;
  width: 23vw;
  outline: none; /* Removes the default outline */
  border: none; /* Removes the border */
  cursor: pointer;
}

input[type="text"] {
    cursor: text; /* Default cursor for text input */
}