/* Set the max-zoom to 150% */
        @viewport {
            max-zoom: 150%;
        }

        body {
            background-image: url("../media/group-desktop.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            margin: 0;
            padding: 0;
            font-family: montserrat, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        @media only screen and (max-width: 768px) {
            body {
                background-image: url("../media/group.jpg"); /* Image for mobile */
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center center;
                background-attachment: scroll; /* You can choose to not fix the background on mobile for better performance */
            }
        }

        /* This division covers the layout of the body */
        div.vlak {
            width: 90%;
            max-width: 400px;
            background-color: rgba(238, 173, 27, 0.5);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

        }

        /* Style for h1 in the body */
        div.vlak h1 {
            font-size: 2.5rem;
            color: rgb(0, 0, 0);
            margin-bottom: 10px;
        }

        /* Style for h2 in the body */
        div.vlak h2 {
            font-size: 1.2rem;
            color: rgb(0, 0, 0);
            margin-bottom: 30px;
        }

        /* Sets the style of the input-bar (username-bar) */
        div.vlak input[type="text"],
        div.vlak input[type="password"] {
            font-size: 1rem;
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        /* Sets the style for the 'show password' button */
        div.vlak input[type="checkbox"] {
            margin-top: 10px;
        }

        /* Sets styles for buttons */
        div.vlak button {
            color: white;
            font-size: 1rem;
            background-color: orangered;
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: none;
            border-radius: 15px;
            cursor: pointer;
        }

        div.vlak button:hover {
            background-color: darkred;
        }

        /* Sets styles for labels */
        div.vlak label {
            font-size: 1rem;
            text-align: left;
            display: block;
            margin-bottom: 5px;
        }