/* Card container styling */
.card {
    background-color: #c7e3ff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    max-width: 70%;
    margin: 0 auto;
  }
  
   /* Card body content styling */
  .card-body {
    padding: 10px;
  }
  
  /* Card title styling */
   .card-title {
    font-weight: bold;
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  } 
  
  /* Form elements styling */
  /* .form-group {
    margin-bottom: 5px;
  } */
  
  /* Label styling */
  label {
    /* display: block; */
    /* font-weight: 30; */
    font-size: large;
    color: #333;
    /* margin-bottom: 8px; */
  }
  
  /* Input and textarea styling */
  input[type="text"],
  input[type="email"],
  textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }
  
  /* Input and textarea hover and focus effects */
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    border-color: #4CAF50;
    outline: none;
  }
  
  /* Textarea customization */
  textarea {
    resize: vertical;
    height: 150px;
  }
  
  /* Submit button styling */
  input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  /* Hover effect for submit button */
  /* input[type="submit"]:hover {
    background-color: #45a049;
  } */
  
  /* Adjusting button for mobile */
  /* input[type="submit"] {
    font-size: 16px;
    padding: 14px;
  } */
  