/* styles.css */
body {
    background-color: #f4f4f4;
    font-family: 'Poppins', sans-serif;
  }
  
  .signup-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .btn-success {
    font-weight: 600;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .animated-text {
    font-size: 20px;
    font-weight: bold;
    color: #27ae60;
    text-align: center;
    margin-bottom: 20px;
    animation: zoomInOut 1.5s infinite alternate;
  }
  
  @keyframes zoomInOut {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  