body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
   /* height: 100vh;*/
    margin: 0;
  }
  
  .container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 90%;
    width: 500px;
  }
  
  h1 {
    margin-bottom: 1.5rem;
    font-size: 24px;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  input {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  button {
    padding: 0.5rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  .icon {
    width: 100px;
    margin-bottom: 1rem;
  }
  
  .error-message, .success-message {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
  }
  .aspect-ratio-16-9 {
    aspect-ratio: 1/ 0.77;
    height: auto;
  }
  