        .bodyform {
            font-family: Arial, sans-serif;
            max-width: 650px;
            margin: 50px auto;
            padding: 20px;
            background-color: white;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .password-container {
            position: relative;
        }

        .password-container input {
            padding-right: 40px;
        }

        .toggle-password {
            position: absolute;
            right: 10px;
            transform: translateY(-50%);
            cursor: pointer;
            user-select: none;
            font-size: 20px;
            background: none;
            border: none;
            padding: 5px;
            width: 30px;
        }

        .toggle-password:hover {
            opacity: 0.7;
            background: none;
        }

        .error {
            color: #d32f2f;
            background-color: #ffebee;
            margin-top: 15px;
            padding-top: 18px;
            text-align: center;
            border-radius: 4px;
            margin-bottom: 15px;
            min-height: 30px;
            display: block;
            word-wrap: break-word;
            border-left: 4px solid #d32f2f;
            vertical-align: middle;
            font-weight: bold;
        }

        button {
            width: 100%;
            padding: 10px;
            margin-left: auto;
            margin-right: auto;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }

        button:hover {
            background-color: #0056b3;
        }

        .link {
            text-align: center;
            margin-top: 15px;
        }

        .link a {
            color: #007bff;
            text-decoration: none;
        }

        .link a:hover {
            text-decoration: underline;
        }