        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        form {
            width: 400px;
            margin: 50px auto 0; /* Centered horizontally, 50px margin from top */
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #f9f9f9;
        }
        h1 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
        }
        label {
            display: block;
            margin-top: 15px;
            font-size: 14px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="datetime-local"] {
            width: calc(100% - 20px);
            height: 30px;
            padding: 5px 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        #strength {
            font-size: 0.9em;
            color: gray;
            margin-top: 5px;
            display: block;
        }
        button {
            margin-top: 20px;
            width: 48%;
            height: 40px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        button[type="reset"] {
            background-color: #6c757d;
        }
        button:hover {
            opacity: 0.9;
        }
        div {
            display: flex;
            justify-content: space-between;
        }

. strength-text { font-size: 0.9em; margin-top: 5px; }
        .weak { color: red; }
        .strong { color: orange; }

        .very-strong { color: green; }
  a{
            text-align: center;
            font-size: 16px;
            margin-bottom: 60px;


    body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
