        body {
            padding: 0;
            margin: 0;
            background-color: #1a1b1b;
        }

        .html {
            padding: 0;
            margin: 0;
        }

        .flexbox-container {
            margin: 0px;
            padding: 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: transparent;

        }

        .flexbox-item {
            width: 400px;
            background-color: transparent;
            border-color: 3px;
            margin: 5px;
        }

        .item-1 {
            min-height: 25px;
            text-align: center;
            color: grey;
            background-color: transparent;
        }

        .item-2 {
            min-height: 200px;
            background-color: transparent;
        }

        .item-3 {
            min-height: 25px;
            background-color: transparent;
        }

        form {
            text-align: center;
            padding: 10px 10px 10px 10px;
        }

        input[type=text] {
            outline: none;
            height: 40px;
            width: 300px;
            border: 1px solid grey;
            background-color: lightblue;
            border-radius: 4px;
            margin-bottom: 10px;
            padding: 0px 5px 0px 5px;
        }

        input[type=password] {
            outline: none;
            height: 40px;
            width: 300px;
            background-color: lightblue;
            border: 1px solid grey;
            border-radius: 4px;
            padding: 0px 5px 0px 5px;
        }

        input[type=submit] {
            background-color: darkorange;
            width: 310px;
            height: 35px;
            border-radius: 4px;
            border: none;
            color: white;
            text-decoration: none;
            cursor: pointer;
            margin-top: 20px;
        }

        input[type=submit]:hover {
            background-color: chocolate;
        }