body {
            font-family: Arial, sans-serif;
            background: #f2f4f8;
            display: flex;
            justify-content: center;
            padding-top: 60px;
        }
        .form-container {
            background: white;
            width: 400px;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0px 4px 10px rgba(0,0,0,.1);
        }
        h2 {
            margin-top: 0;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        label {
            display: block;
            margin: 12px 0 6px;
        }
        input[type=text] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }
        button {
            margin-top: 20px;
            width: 100%;
            padding: 12px;
            border: none;
            background: #0066cc;
            color: white;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
        }
        button:hover {
            background: #004c99;
        }
        a {
            display: inline-block;
            margin-top: 15px;
            text-align: center;
            width: 100%;
            color: #0066cc;
            text-decoration: none;
        }