@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: url(background.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  color: white !important;
  max-width: 500px;
  line-height: 65px;
  padding-left: 50px;
  margin-top: 80px;
  font-size: 18px;
}

.contact-info i {
  margin-right: 20px;
  font-size: 25px;
}

.contact-form {
  max-width: 700px;
  margin-right: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form h2 {
  color: #fff;
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form .text-box {
  background: #fff;
  color: #000000;
  border: none;
  min-width: 300px;
  width: 500px;
  height: 50px;
  font-size: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}

.contact-form textarea {
  background: #fff;
  color: #2e94e3;
  border: none;
  width: 100%;
  font-size: 15px;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.contact-form .send-btn {
  float: right;
  background: #2e94e3;
  color: #fff;
  border: none;
  width: 120px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  transition-property: background;
}

.contact-form .send-btn:hover {
  background: #0582e3;
}

@media screen and (max-width: 768px) {
  .contact-info {
    color: white !important;
    max-width: 500px;
    line-height: 65px;
    padding-left: 50px;
    margin-top: 80px;
    font-size: 20px;
  }

  .contact-info i {
    margin-right: 20px;
    font-size: 25px;
  }

  .contact-form {
    max-width: 700px;
  }

  .contact-form .text-box {
    background: #fff;
    color: #000000;
    border: none;
    width: 300px;
    height: 50px;
    font-size: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .contact-info {
    color: white !important;
    max-width: 500px;
    line-height: 65px;
    padding-left: 50px;
    margin-top: 80px;
    font-size: 15px;
  }

  .contact-info i {
    margin-right: 20px;
    font-size: 20px;
  }

  .contact-form {
    max-width: 700px;
    margin-left: 50px;
  }
}

/*css for alert messages*/

.alert-success {
  text-align: center;
  padding: 10px;
  color: #fff;
  margin-bottom: 10px;
  display: none;
  width: 50%;
  position: absolute;
  top: 5%;
  right: 0%;
}
