body {
            background-color: white;
            font-family: Arial, sans-serif;
        }
        #container {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .top-half{
            flex: 1;
            background-color: #0000ffd9;
        }
        .centered-div{
            position: absolute;
            top: 50%;
            left: 25%;
            width: 50%;
            transform: translateY(-50%);
            background-color: white;
            border-radius: 20px;
            box-shadow: rgba(0, 50, 200, 0.20) 0px 15px 25px, rgba(0, 50, 200, 0.10) 0px 5px 10px;
        }
        .centered-content{
            display: flex;
        }
        .left-content{
            flex: 1;
            overflow: hidden;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
        }
        .right-content{
            flex: 1;
        }
        #loginImage{
            width: 100%;
            height: 100%;
            background-color: #b8cedc;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            transform: scale(1.2);
        }
        #loginDiv{
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        #loginHeader{
            display: flex;
            align-items: center;
            font-size: 22px;
            font-weight: 800;
            margin-top: 20px;
        }
        .bottom-half{
            flex: 1;
            background-color: #d3d3d36b;
        }
        #idp-list {
            list-style-type: none;
            padding: 0;
            text-align: center;
            margin-top: 32px;
            max-height: 25em;
            overflow-y: hidden;
            scrollbar-color: #ccc transparent;
            scrollbar-width: thin;
        }

        #idp-list:hover {
            overflow-y: auto;
        }

        #idp-list li {
            margin-bottom: 10px;
        }
        #idp-list li button {
            width: 240px;
            cursor: pointer;
            margin-bottom: 6px;
        }