/* Center the page */
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
      }

      /* Styling for the form */
      form {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 2px solid #ccc;
        padding: 5px;
        border-radius: 10px;
        background-color: #f2f2f2;
      }

      /* Styling for the form inputs */
      input[type="text"],
      input[type="password"] {
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        margin: 5px;
        width: 100%;
        box-sizing: border-box;
      }

      /* Styling for the form button */
      input[type="submit"] {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
      }

      /* Styling for the error message */
      .error {
        color: red;
        font-size: 14px;
        margin-top: 10px;
      }

.container {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
    margin: 30px auto;
    max-width: 600px;
    padding: 5px;
}

.form-button {
    background-color: #2196f3;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}

.form-link {
    color: #2196f3;
    text-decoration: none;
}
