/*public/styles.css*/

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  /* Body Styling */
  body {
    background: linear-gradient(135deg, #f0f4f8, #e4ebf1);
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
  }
  
  /* Container */
  .container {
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
  }
  
  .container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  
  /* Header */
  .form-header h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .form-header p {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Input Groups */
  .input-group {
    margin-bottom: 1.5rem;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
  }
  
  .input-group input,
  .input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .input-group input:focus,
  .input-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
  }
  
  /* Submit Button */
  .submit-group {
    text-align: center;
  }
  
  .submit-btn {
    background: #3498db;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submit-btn:hover {
    background: #2980b9;
  }
  