.Container {
  min-height: 100vh;
  background: linear-gradient(145deg, #f4f9ff, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.Container .wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

@media (max-width: 991px) {
  .Container .wrapper {
    flex-direction: column;
  }
}

.Container .wrapper .content {
  width: 50%;
  background: #265c81;
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .Container .wrapper .content {
    width: 100%;
    text-align: center;
    padding: 30px;
  }
}

.Container .wrapper .content h1 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
}

.Container .wrapper .content h1 span {
  color: #ffa500;
}

.Container .wrapper .content .Image {
  margin-top: 30px;
}

.Container .wrapper .content .Image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.Container .wrapper .formbox {
  width: 50%;
  padding: 50px;
  background: #ffffff;
}

@media (max-width: 991px) {
  .Container .wrapper .formbox {
    width: 100%;
    padding: 30px;
  }
}

.Container .wrapper .formbox .toggleTabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.Container .wrapper .formbox .toggleTabs button {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #f4f4f4;
  color: #265c81;
  cursor: pointer;
  transition: all 0.3s;
}

.Container .wrapper .formbox .toggleTabs button:not(:last-child) {
  margin-right: 12px;
}

.Container .wrapper .formbox .toggleTabs button.activeTab {
  background: #265c81;
  color: #fff;
  border-color: #265c81;
}

.Container .wrapper .formbox .title h2 {
  font-size: 26px;
  color: #265c81;
  font-weight: 700;
  margin-bottom: 10px;
}

.Container .wrapper .formbox .title p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

.Container .wrapper .formbox .box form .InputBox {
  margin-bottom: 15px;
}
.Container .wrapper .formbox .box form .InputBox .iti {
  width: 100%;
}

.Container .wrapper .formbox .box form .InputBox input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  transition: 0.2s;
}

.Container .wrapper .formbox .box form .InputBox input:focus {
  border-color: #265c81;
  outline: none;
}

.Container .wrapper .formbox .box form .InputBox span {
  font-size: 13px;
  color: red;
  margin-top: 4px;
  display: block;
}

.Container .wrapper .formbox .box form button {
  width: 100%;
  height: 50px;
  background: #265c81;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.Container .wrapper .formbox .box form button:hover {
  background: #1f4d6b;
}

.Container .wrapper .formbox .bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  color: #444;
}

.Container .wrapper .formbox .bottom a {
  color: #265c81;
  text-decoration: underline;
}

.Container .wrapper .formbox .bottom a:hover {
  text-decoration: none;
}

.phoneContainer {
  width: 100%;
}

.phoneContainer .flag-dropdown {
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  background-color: #f9f9f9;
}

.phoneInput {
  padding-left: 60px !important;
  height: 48px !important;
  border-radius: 0 8px 8px 0 !important;
  border: 1px solid #ccc !important;
  font-size: 15px !important;
}

.countryButton {
  background-color: #f1f1f1;
  border: none;
  padding: 6px 10px;
  margin-right: 5px;
}
