/* General body styling */
body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
  }

/* Button styling */
button {
    background: #ffffff;
    color: black;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s;
  }

  button:hover {
    background: #f0f0f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
.centered-register {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
    height: 100vh;           /* full viewport height */
    background-color: black; /* match your body bg */
    color: #333;             /* text color */
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
  }
  