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

:root {
  --dark: #03060B;
  --white: #FFFFFF;
}

body {
  font-family: "Figtree", serif;
  color: var(--dark);
  height: 100vh;
  display: flex;
  align-items: center;
}

.cooming-card {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .08), 0 4px 8px 0 rgba(0, 0, 0, .06);
  border-radius: 20px;

}

.cooming-card-l {
  min-height: 80vh;
  background-image: url(../img/cooming-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 55%;
  border-radius: 20px 0px 0px 20px;
  text-align: center;
  padding: 50px 45px;
  padding-top: 130px;
}

.cooming-card-l-bg {
  height: fit-content;
  margin: auto;
}

.cooming-card-r {
  min-height: 80vh;
  height: 100%;
  width: 45%;
  padding: 80px 45px;
}

.cooming-card-text {
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
  margin-top: 70px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.cooming-form-text {
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 40px;
  color: #00142D;
}

.cooming-form label {
  font-size: 16px;
  font-weight: 400;
  color: #294a5e;
}

.cooming-form input {
  height: 45px;
  border-radius: 4px;
  border-color: #BCC8D3;
}

.cooming-form input:focus {
  box-shadow: unset !important;
  border-color: #294a5e;
}
.cooming-form textarea {
  border-radius: 4px;
  border-color: #BCC8D3;
}
.cooming-form textarea:focus {
  box-shadow: unset !important;
  border-color: #294a5e;
}
.cooming-form .btn{
  width: 100%;
  background-color: #4A37E5;
  color: white;
  font-weight: 500;
  height: 50px;
}