/* Author:  Abdul Rafay  
  CSS FILE: This css file will style the content in the services page
*/

/* code 👇 */

.container {
    max-width: 900px;
  }
.form-container {
    border: 2px solid white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  }

h1 {
    text-align: center;
  }

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  input[type="file"] {
    display: block;
    margin-top: 5px;
  }

  input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }

  button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }

  /* Card Animation when Assignment is Provided */
  #result {
    margin-top: 20px;
    opacity: 0; 
    animation: fade-in 0.5s ease forwards; 
  }
  
  @keyframes fade-in {
    from {
      opacity: 0; 
      transform: translateY(20px); 
    }
    to {
      opacity: 1; 
      transform: translateY(0); 
    }
  }
  
  .card {
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .card-body {
    padding: 10px;
  }
  
  .card-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

