/* Reset defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Full-screen centering */
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Container for all elements */
  .center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #2e0d68; /* deep purple tone */
  }
  
  /* Logo styling */
  .logo {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
  }
  
  /* Heading styling */
  h1 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  /* Button styling */
  button {
    background-color: #2e0d68;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    color:#2e0d68;
    font-weight: 600;
    background-color: #58f9ca;
  }
  