body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #ffebf4;
    margin: 30px 0px 30px 0px;
}
    .login-container {
        background: #fff;
        padding: 30px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 90%;
        max-width: 700px;
        box-sizing: border-box;
    }
        .login-container h2 {
            margin: 0 0 15px;
        }
        .login-container input {
            width: calc(100% - 20px); /* Subtract padding and border width */
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box; /* Ensure padding is included in the element's total width */
        }
        .login-container button {
            width: calc(100% - 20px); /* Subtract padding and border width */
            padding: 10px;
            background-color: #e83e8c;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            box-sizing: border-box; /* Ensure padding is included in the element's total width */
        }
        .login-container button:hover {
            background-color: #d63384;
        }
        .message {
            color: #333;
        }
        .dots-container {
            display: inline-block;
            margin-top: 15px;
            text-align: center;
        }
        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            margin: 0 5px;
            background-color: #e83e8c;
            border-radius: 50%;
            animation: dot-blink 1.5s infinite;
        }
        .dot:nth-child(2) {
            animation-delay: 0.3s;
        }
        .dot:nth-child(3) {
            animation-delay: 0.6s;
        }
        @keyframes dot-blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        #loading-message {
            margin-top: 10px;
            color: #e83e8c;
        }
        #error-message {
            display: none;
            font-size: 16px;
            color: red;
            margin-top: 10px;
            text-align: center;
        }
        #success-message {
            display: none;
            font-size: 18px;
            color: #e83e8c;
            text-align: center;
            margin-top: 20px;
        }

        #dots {
            display: none;
            /* Add styles for the dots container */
        }
        
        #loading-message {
            display: none;
            /* Add styles for the loading message */
        }
        p {
            text-align: left;
        }
        #agreement_checkbox {
            width: auto;
        }
        .cf-turnstile {
            padding: 10px;
            overflow: auto;
            max-width: 100%;
        }
        div#login-form {
            max-width: 400px;
            display: inline-grid;
            justify-items: center;}
            svg#logo {
                height: 18vh;
            }