body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .container {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 70%;
            height: 80%;
            text-align: center;
        }

        .logos {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .logos img {
            height: 50px;
        }

        #app {
            display: block;
        }

        .instruction {
            background-color: #f7f7f7;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        #image {
            width: 100px;
            height: 100px;
        }

        .auth-options {
            text-align: left;
            border-top: 1px solid #ddd;
            padding-top: 10px;
        }

        .auth-options details {
            border-bottom: 1px solid #ddd;
            margin-bottom: 10px;
        }

        .auth-options summary {
            cursor: pointer;
            font-weight: bold;
            padding: 10px 0;
            font-size: 16px;
            color: #333;
        }

        .auth-options details[open] summary {
            color: #007bff;
        }

        .auth-options p {
            padding: 10px 0;
            font-size: 14px;
            color: #666;
            margin: 0;
            border-top: 1px solid #ddd;
        }

        #sms {
            width: 80%;
            height: 25px;
        }

        .verification-form h2 {
            margin-bottom: 20px;
            font-size: 18px;
            color: #333;
        }

        .verification-form input[type="text"] {
            width: 80%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid gray;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .verification-form input[type="text"]:hover {
            border: 3px solid green;
        }

        .verification-form button {
            width: 80%;
            padding: 10px;
            font-size: 16px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
        }

        .verification-form button.confirm {
            background-color: red;
            color: white;
            margin-bottom: 10px;
        }

        .verification-form button.cancel {
            color: black;
        }

        .verification-form button:hover {
            opacity: 0.9;
        }