@font-face {
            font-family: 'ComicStyle';
            src: local('Comic Sans MS'), local('Comic Sans');
        }

        .startbody {
            background-color: #ffeef8;
            background-image:
                linear-gradient(0deg, transparent 24%, #ffe1f0 25%, #ffe1f0 26%, transparent 27%, transparent 74%, #ffe1f0 75%, #ffe1f0 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, #ffe1f0 25%, #ffe1f0 26%, transparent 27%, transparent 74%, #ffe1f0 75%, #ffe1f0 76%, transparent 77%, transparent);
            background-size: 40px 40px;
            font-family: 'ComicStyle', cursive;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            color: #5c4b51;
        }

        .login-box {
            background-color: #fff0fa;
            border: 2px dashed #ffb3d1;
            padding: 30px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 0 10px #ffc1e3;
            max-width: 400px;
        }

        h2 {
            color: #d65db1;
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin: 10px 0 5px;
            font-weight: bold;
        }

        input[type="text"], input[type="password"] {
            width: 80%;
            padding: 8px;
            margin-bottom: 15px;
            border: 1px solid #ffaecb;
            border-radius: 10px;
            background: #fff;
            font-size: 16px;
        }

        input[type="submit"] {
            background-color: #ff94c2;
            border: none;
            padding: 10px 20px;
            border-radius: 15px;
            font-size: 16px;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        input[type="submit"]:hover {
            background-color: #f277b1;
        }

        .stars {
            margin-bottom: 20px;
            color: #fbb1e3;
            font-size: 20px;
        }