 body {
            font-family: Arial, sans-serif;
            background-color: #010c01;
            margin: 0;
            padding: 0;
        }

        .form-container {
            width: 400px;
            margin: 50px auto;
            background-color: rgb(10, 10, 10);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border: 2px dashed chartreuse;

        }

        form {
            display: flex;
            flex-direction: column;
            

        }

        label {
            font-size: 14px;
            color: #14e60d;
            margin-bottom: 5px;
        }

        input[type="text"],
        input[type="text"],
        input[type="text"],
        input[type="number"],
        input[type="email"]
         {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
            color: rgb(104, 204, 4);
        }

        input[type="submit"] {
            width: 100%;
            padding: 10px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            color: chartreuse;
        }

        input[type="submit"]:hover {
            background-color: #0056b3;
        }

        input[type="submit"]:active {
            background-color: #004494;
        }

       