/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 0 20px; /* Added margin for spacing on both sides */
  }
  
  .logo {
    text-align: center;
    margin-bottom: 20px;
    margin-top:-15px;
  }
  
  .logo img {
    max-width: 150px;
    height: auto;
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: -15px;
    font-size: 22px;
  
  }
  
  .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  label {
    flex: 1;
    margin-right: 20px;
    color: #555;
    font-weight: 500;
    text-align: right;
  }
  
  .input-container {
    flex: 2;
  }
  
  input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .error-message {
    color: red;
    font-size: 14px;
    display: none;
    margin-top: 5px;
  }
  
  button {
    width: 50%; /* Smaller button width */
    padding: 10px; /* Adjusted padding */
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    display: block; /* Center the button */
    margin: 0 auto; /* Center the button */
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    .form-group {
      flex-direction: column;
      align-items: flex-start;
    }
  
    label {
      text-align: left;
      margin-bottom: 5px;
    margin-right: 0; /* Remove right margin for mobile */
    }
  
    .input-container {
      width: 100%;
    }
  
    button {
      width: 100%; /* Full width button on mobile */
    }
  }
  /* Confirmation Message */
.confirmation-message {
    display: none; /* Hidden by default */
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
  }