body {
    font-family: 'Inter', sans-serif;
    background-color:rgb(199 196 181);
    color: #212529;
    margin: 0;
    padding: 0;
  }
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  .content {
    display: flex;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 200px;
  }
  .image-section {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?q=80&w=1287&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    min-height: 450px;
  }
  .form-section {
    flex: 1;
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    margin-top:0px;
  }
  p {
    text-align: center;
    margin-bottom: 20px;
    color: #6c757d;
  }
  .form-group label {
    font-weight: 600;
    color: #495057;
  }
  .form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 12px;
    font-size: 1rem;
    width: 90%;
    margin-bottom: 5px;
  }
  .form-control:focus {
    border-color: #ff8800;
    box-shadow: 0 0 6px rgba(255, 136, 0, 0.3);
  }
  .btn-primary {
    background-color: #FFAA00;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 20px;
    width: 90%;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 20px;
  }
  .btn-primary:hover {
    background-color: #e69900;
  }
  .alert {
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
    }
    .image-section {
      display: none;
    }
    .form-section {
      padding: 30px;
    }
  }
  .position-relative {
    position: relative;
  }
  .footer{
    margin-top: 300px;
  }

  .phone-input {
    padding-left: 50px;
    width: 80%;
  }

  .phone-prefix {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #555;
    pointer-events: none; 
  }