@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  font-family: 'Ubuntu', sans-serif;
  color: #000;
}

body {
  background: linear-gradient(90deg, #056a86 -3.65%, #0089b8 101.98%);
}

/* Request a Meeting */

.request {
  display: grid;
  column-gap: 50px;
  grid-template-columns: auto auto;
  flex-direction: column;
  justify-content: center;
  columns: center;
  width: 100%;
  text-align: center;
  margin: 100px 0 0 0;
}

.request-section_left {
  display: block;
  row-gap: 50px;
  grid-template-columns: 1fr 50px;
  max-width: 400px;
  padding-top: 80px;
}

.logo {
  width: 350px;
  height: 175px;
  background-image: url('../images/logo_white.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header {
  padding-top: 50px;
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
}

.description {
  padding-top: 30px;
  font-weight: 280;
  font-size: 1.2rem;
  color: #fff;
}

.logo-blue {
  margin: 20px;
  width: 190px;
  height: 95px;
  background-image: url('../images/logo_blue.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.request-section {
  display: flex;
}

.form {
  background-color: #fff;
  border-radius: 20px;
}

label {
  font-weight: 500;
  display: flex;
  margin: 10px;
}

input {
  padding: 18px 12px 18px 12px;
  min-width: 340px;
  height: 44px;
  border: 0.2px solid #0089b8;
  border-radius: 20px;
  box-sizing: border-box;
  font-size: 1rem;
}

input:focus {
  border: 0.2px solid #fff;
}

.form-group {
  display: grid;
  margin: 20px;
}

button {
  margin-top: 25px;
  /* display: flex; */
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #0089b8 -3.65%, #056a86 101.98%);
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
button:hover {
  background: linear-gradient(60deg, #0089b8 -3.65%, #056a86 101.98%);
}

@media screen and (max-width: 1025px) {
  .request {
    display: flex;
    align-items: center;
    margin: 40px 0 0 0;
  }

  .request-section_left {
    padding-top: 5px;
  }

  .request-section {
    margin-top: 25px;
  }
}
