@charset "utf-8";
/* CSS Document */

      /* Estilo para o spinner */
        .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 3px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top-color: #FFF;
            animation: spin 1s ease infinite;
            margin-left: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Estilo para centralizar o conteúdo do botão */
        #submitButton {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px; /* Espaço entre o texto e o spinner */
            padding: 10px 20px;
        }

        #submitText {
            margin-right: 8px;
        }