body {
            font-family: Arial, sans-serif;
            background-color: #f0f4ff;
            color: #333;
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        h1 {
            color: #0059b3;
            text-align: center;
        }

        a {
            color: #0059b3;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .registration-form {
            background-color: #fff;
            padding: 20px;
            width: 300px;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            position: relative;
            margin: auto;
        }

        label {
            display: block;
            margin-top: 10px;
            font-weight: bold;
        }

        input, select {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border-radius: 5px;
            border: 1px solid #ccc;
            transition: 0.3s;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #0059b3;
            box-shadow: 0 0 5px #0059b3;
        }

        input[type="submit"] {
            margin-top: 15px;
            background-color: #0059b3;
            color: white;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }

        input[type="submit"]:hover {
            background-color: #003d80;
        }
        label{
            color: indigo;
        }
